Fekete Problem DAE Work-Precision Diagrams
This is a benchmark of the Fekete problem, an index-3 DAE describing $N=20$ charged particles on the unit sphere, from the IVP Test Set.
The problem computes elliptic Fekete points: $N=20$ particles on the unit sphere $S^2$ that maximize the product of mutual distances $V(x) = \prod_{i<j} \|x_i - x_j\|_2$. By mechanical analogy, the particles are subject to a repulsive Coulomb-like force and an adhesion damping force $A_i = -\alpha q_i$ ($\alpha = 0.5$). The particles are constrained to the unit sphere via Lagrange multipliers $\lambda_i$.
The original index-3 system has the physics: $\ddot{p}_i = -\alpha \dot{p}_i + 2\lambda_i p_i + \sum_{j \neq i} \frac{p_i - p_j}{\|p_i - p_j\|^2}$$0 = \|p_i\|^2 - 1$
The stabilized index-2 formulation (from the Fortran test set) introduces velocity variables $q_i = \dot{p}_i$ and Baumgarte stabilization multipliers $\mu_i$, giving 160 = 8N state variables with mass matrix $M = \text{diag}(I_{6N}, 0_{2N})$: $\dot{p}_i = q_i + 2\mu_i p_i, \quad \dot{q}_i = -\alpha q_i + 2\lambda_i p_i + \sum_{j\neq i}\frac{p_i - p_j}{\|p_i - p_j\|^2}$$0 = \|p_i\|^2 - 1, \quad 0 = 2p_i \cdot q_i$
We benchmark three formulations:
- Mass-Matrix ODE Form: The stabilized index-2 system as
M·du/dt = f(u, t), solved with Rosenbrock-W and BDF methods. - DAE Residual Form: Same system as
F(du, u, t) = M·du − f(u, t) = 0, solved with IDA and DASKR. - MTK Automatic Index Reduction: The original index-3 system is given directly to ModelingToolkit, which uses
structural_simplifyto automatically perform index reduction and generate an index-1 DAE. This benchmarks MTK's symbolic transformation pipeline on a large-scale constrained mechanical system.
Reference: Bendtsen, C., Thomsen, P.G.: Numerical solution of differential algebraic equations. IMM-DTU, Tech. Report (1999). Available at the IVP Test Set.
using OrdinaryDiffEq, DiffEqDevTools, Sundials, ModelingToolkit,
ODEInterfaceDiffEq, Plots, DASKR
using ModelingToolkit: t_nounits as t, D_nounits as D
using LinearAlgebra, StatisticsProblem Definition
We translate the Fortran reference implementation (fekete.f) into Julia. The problem has $N = 20$ particles with $8N = 160$ state variables.
Initial Conditions
The initial positions place the 20 particles in four latitude rings on the sphere (3 + 7 + 6 + 4 particles), with initial velocities $q(0) = 0$ and multipliers $\mu(0)$ computed for consistency.
const N_ART = 20
const NEQN = 8 * N_ART # 160
const ALPHA_DAMP = 0.5
function fekete_init()
y = zeros(NEQN)
# Ring 1: 3 particles at beta = 3π/8
for i in 1:3
α = 2π * i / 3 + π / 13
β = 3π / 8
y[3*(i-1)+1] = cos(α) * cos(β)
y[3*(i-1)+2] = sin(α) * cos(β)
y[3*(i-1)+3] = sin(β)
end
# Ring 2: 7 particles at beta = π/8
for i in 4:10
α = 2π * (i - 3) / 7 + π / 29
β = π / 8
y[3*(i-1)+1] = cos(α) * cos(β)
y[3*(i-1)+2] = sin(α) * cos(β)
y[3*(i-1)+3] = sin(β)
end
# Ring 3: 6 particles at beta = -2π/15
for i in 11:16
α = 2π * (i - 10) / 6 + π / 7
β = -2π / 15
y[3*(i-1)+1] = cos(α) * cos(β)
y[3*(i-1)+2] = sin(α) * cos(β)
y[3*(i-1)+3] = sin(β)
end
# Ring 4: 4 particles at beta = -3π/10
for i in 17:20
α = 2π * (i - 17) / 4 + π / 17
β = -3π / 10
y[3*(i-1)+1] = cos(α) * cos(β)
y[3*(i-1)+2] = sin(α) * cos(β)
y[3*(i-1)+3] = sin(β)
end
# q(0) = 0 (indices 3N+1 : 6N already zero)
# μ(0) = 0 initially, then compute consistent values
# Compute consistent μ via one feval pass (from Fortran init)
yprime = similar(y)
fekete_rhs!(yprime, y, nothing, 0.0)
for i in 1:N_ART
s = 0.0
for j in 1:3
s += y[3*(i-1)+j] * yprime[3*N_ART + 3*(i-1)+j]
end
y[6*N_ART+i] = -s / 2.0
end
return y
endfekete_init (generic function with 1 method)Right-Hand Side
The RHS encodes the equations of motion: repulsive Coulomb forces between particles on the sphere, damping, and the algebraic constraints.
function fekete_rhs!(dy, y, p, t)
nart = N_ART
T = eltype(dy)
# Unpack state: positions p, velocities q, multipliers λ, μ
# p_i = y[3(i-1)+1 : 3(i-1)+3], i = 1..N
# q_i = y[3N+3(i-1)+1 : 3N+3(i-1)+3]
# λ_i = y[6N+i]
# μ_i = y[7N+i]
# Compute pairwise repulsive forces f(i,j,k) = (p_i - p_j) / |p_i - p_j|²
# and accumulate into velocity derivatives
@inbounds for i in 1:nart
lam_i = y[6*nart+i]
mu_i = y[7*nart+i]
# dp_i/dt = q_i + 2*μ_i*p_i
for k in 1:3
pk = y[3*(i-1)+k]
qk = y[3*nart+3*(i-1)+k]
dy[3*(i-1)+k] = qk + 2*mu_i*pk
end
# dq_i/dt = -α*q_i + 2*λ_i*p_i + Σ_{j≠i} (p_i - p_j)/|p_i - p_j|²
for k in 1:3
pk = y[3*(i-1)+k]
qk = y[3*nart+3*(i-1)+k]
force_k = -ALPHA_DAMP * qk + 2*lam_i * pk
for j in 1:nart
if j != i
rn = zero(T)
for m in 1:3
rn += (y[3*(i-1)+m] - y[3*(j-1)+m])^2
end
force_k += (pk - y[3*(j-1)+k]) / rn
end
end
dy[3*nart+3*(i-1)+k] = force_k
end
# Algebraic equations
# φ_i = |p_i|² - 1 = 0 (sphere constraint)
phi_i = -one(T)
for k in 1:3
phi_i += y[3*(i-1)+k]^2
end
dy[6*nart+i] = phi_i
# g_i = 2*p_i·q_i = 0 (differentiated constraint)
gpq_i = zero(T)
for k in 1:3
gpq_i += 2*y[3*(i-1)+k] * y[3*nart+3*(i-1)+k]
end
dy[7*nart+i] = gpq_i
end
nothing
endfekete_rhs! (generic function with 1 method)Analytical Jacobian
The Jacobian is dense due to the pairwise Coulomb interactions. We provide the analytical Jacobian translated from the Fortran jeval subroutine.
function fekete_jac!(J, y, p, t)
nart = N_ART
neqn = NEQN
T = eltype(J)
fill!(J, zero(T))
# Extract state
pp = zeros(T, nart, 3)
qq = zeros(T, nart, 3)
lam = zeros(T, nart)
mu = zeros(T, nart)
for i in 1:nart
for k in 1:3
pp[i,k] = y[3*(i-1)+k]
qq[i,k] = y[3*nart+3*(i-1)+k]
end
lam[i] = y[6*nart+i]
mu[i] = y[7*nart+i]
end
# Precompute |p_i - p_j|²
rn = zeros(T, nart, nart)
for j in 1:nart, i in 1:nart
for k in 1:3
rn[i,j] += (pp[i,k] - pp[j,k])^2
end
end
# J_pp: ∂(dp_i/dt)/∂p_i = 2μ_i * I₃
for i in 1:nart, k in 1:3
J[3*(i-1)+k, 3*(i-1)+k] = 2*mu[i]
end
# J_pq: ∂(dp_i/dt)/∂q_i = I₃
for i in 1:nart, k in 1:3
J[3*(i-1)+k, 3*nart+3*(i-1)+k] = one(T)
end
# J_pμ: ∂(dp_i/dt)/∂μ_i = 2p_i
for i in 1:nart, k in 1:3
J[3*(i-1)+k, 7*nart+i] = 2*pp[i,k]
end
# J_qp (same i, same k): diagonal + force derivatives
for i in 1:nart, k in 1:3
val = 2*lam[i]
for j in 1:nart
if j != i
val += (rn[i,j] - 2*(pp[i,k] - pp[j,k])^2) / rn[i,j]^2
end
end
J[3*nart+3*(i-1)+k, 3*(i-1)+k] = val
end
# J_qp (same i, different k,m): off-diagonal spatial components
for i in 1:nart, k in 1:3, m in 1:3
if m != k
val = zero(T)
for j in 1:nart
if j != i
val -= 2*(pp[i,k] - pp[j,k])*(pp[i,m] - pp[j,m]) / rn[i,j]^2
end
end
J[3*nart+3*(i-1)+k, 3*(i-1)+m] += val
end
end
# J_qp (different i,l, same k): inter-particle force derivatives
for i in 1:nart, l in 1:nart
if l != i
for k in 1:3
J[3*nart+3*(i-1)+k, 3*(l-1)+k] =
(-rn[i,l] + 2*(pp[i,k] - pp[l,k])^2) / rn[i,l]^2
end
end
end
# J_qp (different i,l, different k,m): cross terms
for i in 1:nart, l in 1:nart
if l != i
for k in 1:3, m in 1:3
if m != k
J[3*nart+3*(i-1)+k, 3*(l-1)+m] +=
2*(pp[i,k] - pp[l,k])*(pp[i,m] - pp[l,m]) / rn[i,l]^2
end
end
end
end
# J_qq: ∂(dq_i/dt)/∂q_i = -α I₃
for i in 1:nart, k in 1:3
J[3*nart+3*(i-1)+k, 3*nart+3*(i-1)+k] = -ALPHA_DAMP
end
# J_qλ: ∂(dq_i/dt)/∂λ_i = 2p_i
for i in 1:nart, k in 1:3
J[3*nart+3*(i-1)+k, 6*nart+i] = 2*pp[i,k]
end
# J_λp: ∂φ_i/∂p_i = 2p_i
for i in 1:nart, k in 1:3
J[6*nart+i, 3*(i-1)+k] = 2*pp[i,k]
end
# J_μp: ∂g_i/∂p_i = 2q_i
for i in 1:nart, k in 1:3
J[7*nart+i, 3*(i-1)+k] = 2*qq[i,k]
end
# J_μq: ∂g_i/∂q_i = 2p_i
for i in 1:nart, k in 1:3
J[7*nart+i, 3*nart+3*(i-1)+k] = 2*pp[i,k]
end
nothing
endfekete_jac! (generic function with 1 method)Mass-Matrix ODE Formulation
y0 = fekete_init()
# Mass matrix: M = diag(I_{6N}, 0_{2N})
M = zeros(NEQN, NEQN)
for i in 1:6*N_ART
M[i,i] = 1.0
end
mmf = ODEFunction(fekete_rhs!, mass_matrix = M, jac = fekete_jac!)
tspan = (0.0, 1000.0)
mmprob = ODEProblem(mmf, y0, tspan)ODEProblem with uType Vector{Float64} and tType Float64. In-place: true
Non-trivial mass matrix: true
timespan: (0.0, 1000.0)
u0: 160-element Vector{Float64}:
-0.2650941332839412
0.2759922279796341
0.9238795325112867
-0.10646921403545888
-0.367574367807928
0.9238795325112867
0.37156334731940005
0.09158213982829398
0.9238795325112867
0.4945564328017459
⋮
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0DAE Residual Formulation
function fekete_dae!(res, du, u, p, t)
f = similar(u)
fekete_rhs!(f, u, p, t)
# Residual: M*du - f(u) = 0
for i in 1:6*N_ART
res[i] = du[i] - f[i]
end
for i in 6*N_ART+1:NEQN
res[i] = -f[i] # algebraic: 0 = f_alg(u)
end
nothing
end
du0 = zeros(NEQN)
fekete_rhs!(du0, y0, nothing, 0.0)
# For differential variables, du0 = f(y0); for algebraic, du0 = 0
du0_dae = copy(du0)
du0_dae[6*N_ART+1:end] .= 0.0
differential_vars = vcat(trues(6*N_ART), falses(2*N_ART))
daeprob = DAEProblem(fekete_dae!, du0_dae, y0, tspan,
differential_vars = differential_vars)DAEProblem with uType Vector{Float64} and tType Float64. In-place: true
timespan: (0.0, 1000.0)
u0: 160-element Vector{Float64}:
-0.2650941332839412
0.2759922279796341
0.9238795325112867
-0.10646921403545888
-0.367574367807928
0.9238795325112867
0.37156334731940005
0.09158213982829398
0.9238795325112867
0.4945564328017459
⋮
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
du0: 160-element Vector{Float64}:
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
⋮
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0MTK Automatic Index Reduction
We give ModelingToolkit the original index-3 system directly and let structural_simplify automatically perform index reduction. This benchmarks MTK's symbolic transformation pipeline — no manual constraint differentiation or variable elimination is performed.
ps_mtk = Vector{Num}(undef, 3*N_ART)
qs_mtk = Vector{Num}(undef, 3*N_ART)
λs_mtk = Vector{Num}(undef, N_ART)
for i in 1:N_ART
for k in 1:3
idx = 3*(i-1) + k
ps_mtk[idx] = only(@variables $(Symbol("p$(i)_$(k)"))(t) = y0[idx])
qs_mtk[idx] = only(@variables $(Symbol("q$(i)_$(k)"))(t) = 0.0)
end
λs_mtk[i] = only(@variables $(Symbol("lam$(i)"))(t) = 0.0)
end
eqs_mtk = Equation[]
# Kinematics: dp/dt = q (60 equations)
for idx in 1:3*N_ART
push!(eqs_mtk, D(ps_mtk[idx]) ~ qs_mtk[idx])
end
# Dynamics: dq/dt = -αq + 2λp + Coulomb (60 equations)
for i in 1:N_ART
for k in 1:3
idx = 3*(i-1) + k
coulomb = sum(
(ps_mtk[idx] - ps_mtk[3*(j-1)+k]) /
sum((ps_mtk[3*(i-1)+m] - ps_mtk[3*(j-1)+m])^2 for m in 1:3)
for j in 1:N_ART if j != i
)
push!(eqs_mtk, D(qs_mtk[idx]) ~ -ALPHA_DAMP*qs_mtk[idx] +
2*λs_mtk[i]*ps_mtk[idx] + coulomb)
end
end
# Position-level constraint: |p_i|² = 1 (20 index-3 constraints)
for i in 1:N_ART
push!(eqs_mtk, sum(ps_mtk[3*(i-1)+k]^2 for k in 1:3) ~ 1)
end
# Explicit automatic index reduction
@named sys_raw = ODESystem(eqs_mtk, t)
sys_mtk = structural_simplify(sys_raw)
mtkprob = ODEProblem(sys_mtk, [], tspan)
println("MTK automatic reduction → $(length(unknowns(sys_mtk))) states")MTK automatic reduction → 160 statesReference Solution
The Fortran test set provides a high-accuracy reference solution at $t = 1000$, computed with RADAU5 at rtol = atol = 1e-12. We use this as our ground truth and also compute a high-accuracy Julia reference for timeseries comparison.
# Reference values from Fortran solut() subroutine (RADAU5, tol=1e-12)
const REFSOL = zeros(NEQN)
REFSOL[ 1] = -0.4070263380333202
REFSOL[ 2] = 0.3463758772791802
REFSOL[ 3] = 0.8451942450030429
REFSOL[ 4] = 0.7752934752521549e-01
REFSOL[ 5] = -0.2628662719972299
REFSOL[ 6] = 0.9617122871829146
REFSOL[ 7] = 0.7100577833343567
REFSOL[ 8] = 0.1212948055586120
REFSOL[ 9] = 0.6936177005172217
REFSOL[ 10] = 0.2348267744557627
REFSOL[ 11] = 0.7449277976923311
REFSOL[ 12] = 0.6244509285956391
REFSOL[ 13] = -0.4341114738782885
REFSOL[ 14] = 0.8785430442262876
REFSOL[ 15] = 0.1992720444237660
REFSOL[ 16] = -0.9515059600312596
REFSOL[ 17] = 0.2203508762787005
REFSOL[ 18] = 0.2146669498274008
REFSOL[ 19] = -0.6385191643609878
REFSOL[ 20] = -0.4310833259390688
REFSOL[ 21] = 0.6375425027722121
REFSOL[ 22] = -0.1464175087914336
REFSOL[ 23] = -0.9380871635228862
REFSOL[ 24] = 0.3139337298744690
REFSOL[ 25] = 0.5666974065069942
REFSOL[ 26] = -0.6739221885076542
REFSOL[ 27] = 0.4740073135462156
REFSOL[ 28] = 0.9843259538440293
REFSOL[ 29] = -0.1696995357819996
REFSOL[ 30] = -0.4800504290609090e-01
REFSOL[ 31] = 0.1464175087914331
REFSOL[ 32] = 0.9380871635228875
REFSOL[ 33] = -0.3139337298744656
REFSOL[ 34] = -0.7092757549979014
REFSOL[ 35] = 0.5264062637139616
REFSOL[ 36] = -0.4688542938854929
REFSOL[ 37] = -0.8665731819284478
REFSOL[ 38] = -0.4813878059756024
REFSOL[ 39] = -0.1315929352982178
REFSOL[ 40] = -0.2347897778700538
REFSOL[ 41] = -0.8594340408013130
REFSOL[ 42] = -0.4541441287957579
REFSOL[ 43] = 0.5530976940074118
REFSOL[ 44] = -0.7674370265615124
REFSOL[ 45] = -0.3242273140037833
REFSOL[ 46] = 0.7711050969896927
REFSOL[ 47] = 0.6357041816577034
REFSOL[ 48] = 0.3573685519777001e-01
REFSOL[ 49] = 0.7103951209379591
REFSOL[ 50] = 0.2403570431280519
REFSOL[ 51] = -0.6614886725910596
REFSOL[ 52] = -0.3038208738735660e-01
REFSOL[ 53] = 0.4501923293640461
REFSOL[ 54] = -0.8924145871442046
REFSOL[ 55] = -0.5772996158107093
REFSOL[ 56] = -0.1766763414971813
REFSOL[ 57] = -0.7971892020969544
REFSOL[ 58] = 0.2414481766969039
REFSOL[ 59] = -0.3416456818373135
REFSOL[ 60] = -0.9082846503446250
# Velocities q at t=1000 (near-zero at stationary state)
REFSOL[ 61] = 0.2409619682166627e-15
REFSOL[ 62] = -0.1139818460497816e-15
REFSOL[ 63] = 0.1627536276556335e-15
REFSOL[ 64] = 0.1745651819597609e-15
REFSOL[ 65] = -0.1914278710633076e-15
REFSOL[ 66] = -0.6639600671806291e-16
REFSOL[ 67] = 0.1708576733899083e-15
REFSOL[ 68] = -0.2277602521390053e-15
REFSOL[ 69] = -0.1350782790950654e-15
REFSOL[ 70] = 0.2411941341109454e-15
REFSOL[ 71] = -0.1438238671800488e-15
REFSOL[ 72] = 0.8087033550666644e-16
REFSOL[ 73] = 0.1618239105233347e-15
REFSOL[ 74] = 0.1837556152070701e-16
REFSOL[ 75] = 0.2715177369929503e-15
REFSOL[ 76] = 0.7930078658689191e-16
REFSOL[ 77] = 0.7482020588342764e-16
REFSOL[ 78] = 0.2746974939098084e-15
REFSOL[ 79] = 0.8849338913035911e-16
REFSOL[ 80] = -0.5940734725324115e-16
REFSOL[ 81] = 0.4845984056889910e-16
REFSOL[ 82] = -0.3728835248155620e-16
REFSOL[ 83] = -0.4600332954062859e-16
REFSOL[ 84] = -0.1548568884846698e-15
REFSOL[ 85] = 0.2507541692375411e-16
REFSOL[ 86] = -0.1560155223230823e-15
REFSOL[ 87] = -0.2517946296860555e-15
REFSOL[ 88] = -0.3739779361502470e-16
REFSOL[ 89] = -0.1381663620885020e-15
REFSOL[ 90] = -0.2784051540342329e-15
REFSOL[ 91] = 0.6624397102887671e-16
REFSOL[ 92] = 0.4226207488883120e-16
REFSOL[ 93] = 0.1571821772296610e-15
REFSOL[ 94] = -0.4112243677286995e-16
REFSOL[ 95] = 0.1939960344265876e-15
REFSOL[ 96] = 0.2800184977692136e-15
REFSOL[ 97] = -0.9189023375328813e-16
REFSOL[ 98] = 0.1392943179389155e-15
REFSOL[ 99] = 0.9556003995587458e-16
REFSOL[100] = -0.2234188557495892e-15
REFSOL[101] = 0.1276804778190781e-15
REFSOL[102] = -0.1261196211463950e-15
REFSOL[103] = -0.1887754149742397e-15
REFSOL[104] = -0.2140788698695373e-16
REFSOL[105] = -0.2713591291421657e-15
REFSOL[106] = 0.1107887633060814e-15
REFSOL[107] = -0.1318443715631340e-15
REFSOL[108] = -0.4521275683078691e-16
REFSOL[109] = -0.1277688851278605e-15
REFSOL[110] = 0.4850914012115388e-16
REFSOL[111] = -0.1195891666741192e-15
REFSOL[112] = -0.1569641653843750e-15
REFSOL[113] = 0.1856239009452638e-15
REFSOL[114] = 0.9898466095646496e-16
REFSOL[115] = -0.2068030800303723e-15
REFSOL[116] = 0.2451470336752085e-15
REFSOL[117] = 0.9542986459336358e-16
REFSOL[118] = -0.2456074075580993e-15
REFSOL[119] = 0.1532475480661800e-15
REFSOL[120] = -0.1229326332276474e-15
# λ multipliers at t=1000
REFSOL[121] = -0.4750000000000000e+01
REFSOL[122] = -0.4750000000000001e+01
REFSOL[123] = -0.4750000000000000e+01
REFSOL[124] = -0.4750000000000000e+01
REFSOL[125] = -0.4750000000000000e+01
REFSOL[126] = -0.4750000000000000e+01
REFSOL[127] = -0.4750000000000000e+01
REFSOL[128] = -0.4750000000000000e+01
REFSOL[129] = -0.4750000000000000e+01
REFSOL[130] = -0.4750000000000000e+01
REFSOL[131] = -0.4750000000000001e+01
REFSOL[132] = -0.4750000000000001e+01
REFSOL[133] = -0.4750000000000000e+01
REFSOL[134] = -0.4750000000000000e+01
REFSOL[135] = -0.4750000000000000e+01
REFSOL[136] = -0.4750000000000000e+01
REFSOL[137] = -0.4749999999999999e+01
REFSOL[138] = -0.4750000000000000e+01
REFSOL[139] = -0.4750000000000000e+01
REFSOL[140] = -0.4750000000000000e+01
# μ multipliers at t=1000 (near-zero)
REFSOL[141] = -0.3537526598492654e-19
REFSOL[142] = 0.2338193888161182e-18
REFSOL[143] = -0.3267771993164953e-18
REFSOL[144] = 0.2915679914072042e-18
REFSOL[145] = 0.1965183195887647e-18
REFSOL[146] = -0.6224992924096233e-19
REFSOL[147] = -0.1715878416756298e-18
REFSOL[148] = -0.2704741705248803e-18
REFSOL[149] = 0.3008700893194513e-18
REFSOL[150] = -0.2703121624910402e-18
REFSOL[151] = 0.4243755291982164e-18
REFSOL[152] = 0.2862063003949612e-18
REFSOL[153] = 0.1222125408406218e-19
REFSOL[154] = -0.4958862706817728e-18
REFSOL[155] = -0.7070673036251212e-18
REFSOL[156] = -0.4454983024194383e-18
REFSOL[157] = -0.1125384872521777e-18
REFSOL[158] = 0.1512898724592511e-18
REFSOL[159] = -0.6163704221424137e-19
REFSOL[160] = 0.6255426995473074e-196.255426995473074e-20# Compute high-accuracy reference solutions
println("Computing mass-matrix reference solution with Rodas5P...")
ref_sol = solve(mmprob, Rodas5P(), reltol = 1e-8, abstol = 1e-8,
maxiters = 10_000_000)
println(" retcode = $(ref_sol.retcode), npoints = $(length(ref_sol.t)), ",
"t_final = $(ref_sol.t[end])")
println("Computing MTK reference solution with Rodas5P...")
mtk_ref = solve(mtkprob, Rodas5P(), reltol = 1e-8, abstol = 1e-8,
maxiters = 10_000_000)
println(" retcode = $(mtk_ref.retcode), npoints = $(length(mtk_ref.t))")
# We use separate references: the canonical mass-matrix reference for
# mass-matrix and DAE forms, and an MTK reference for the MTK form
# (structural_simplify may change the state layout).Computing mass-matrix reference solution with Rodas5P...
retcode = Success, npoints = 9597, t_final = 1000.0
Computing MTK reference solution with Rodas5P...
retcode = InitialFailure, npoints = 1Verification against Fortran Reference
We compare our solution at $t = 1000$ with the Fortran RADAU5 reference to verify correctness. The first 6 position components (output components from the test set) are checked.
sol_final = ref_sol.u[end]
println("=== Verification at t = 1000 ===")
println("Component | Fortran Reference | Julia Solution | Rel Error")
println("-"^75)
for idx in 1:6
ref_val = REFSOL[idx]
our_val = sol_final[idx]
relerr = abs(ref_val) > 0 ? abs((our_val - ref_val) / ref_val) : abs(our_val)
status = relerr < 1e-3 ? "✓" : (relerr < 1e-1 ? "~" : "✗")
println("y($(lpad(idx,3))) | $(lpad(string(ref_val), 22)) | $(lpad(string(round(our_val, sigdigits=12)), 22)) | $(relerr) $status")
end
# Check λ multipliers (should all be ≈ -4.75)
lam_vals = sol_final[6*N_ART+1:7*N_ART]
println("\nλ multipliers: mean = $(round(mean(lam_vals), sigdigits=6)), ",
"std = $(round(std(lam_vals), sigdigits=3))")
# Check sphere constraints: |p_i|² should equal 1
max_constraint = 0.0
for i in 1:N_ART
c = sum(sol_final[3*(i-1)+k]^2 for k in 1:3) - 1.0
global max_constraint = max(max_constraint, abs(c))
end
println("Max sphere constraint violation: $(max_constraint)")=== Verification at t = 1000 ===
Component | Fortran Reference | Julia Solution | Rel Error
---------------------------------------------------------------------------
y( 1) | -0.4070263380333202 | -0.407026338034 | 1.43201319783019
1e-12 ✓
y( 2) | 0.3463758772791802 | 0.346375877283 | 9.6901270215809e
-12 ✓
y( 3) | 0.8451942450030429 | 0.845194245001 | 1.95958587972856
56e-12 ✓
y( 4) | 0.0775293475252155 | 0.0775293475243 | 1.21424952742819
7e-11 ✓
y( 5) | -0.2628662719972299 | -0.262866271994 | 1.36536097065157
02e-11 ✓
y( 6) | 0.9617122871829146 | 0.961712287184 | 1.09889549216051
82e-12 ✓
λ multipliers: mean = -4.75, std = 4.99e-16
Max sphere constraint violation: 2.220446049250313e-16Solution Plots
The solution shows the 20 particles settling into a near-optimal configuration on the unit sphere. The velocities $q_i$ decay to zero due to damping, while the Lagrange multipliers converge to $\lambda_i = -4.75$.
plot(ref_sol, idxs = [1, 2, 3, 4, 5, 6],
title = "Fekete Problem: First 6 Position Components",
xlabel = "Time", ylabel = "Value", lw = 1.5,
layout = (2, 3), size = (900, 500))
# Velocity components (should decay to zero)
plot(ref_sol, idxs = [61, 62, 63, 64, 65, 66],
title = "Velocity Components (q₁)",
xlabel = "Time", ylabel = "Value", lw = 1.5)
# Lagrange multipliers (should converge to -4.75)
plot(ref_sol, idxs = [121, 122, 123, 124, 125],
title = "Lagrange Multipliers λ (should → -4.75)",
xlabel = "Time", ylabel = "λ", lw = 1.5)
Problem Setup for Benchmarks
We set up the problem array and reference array for WorkPrecisionSet. The three formulations are: (1) mass-matrix ODE, (2) DAE residual, (3) MTK index-reduced.
probs = [mmprob, daeprob, mtkprob]
refs = [ref_sol, ref_sol, mtk_ref]3-element Vector{SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}},
Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothin
g, P, A, IType, SciMLBase.DEStats, Nothing, Nothing, Nothing, Nothing} wher
e {P, A, IType}}:
SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothin
g, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, SciMLBase.ODE
Problem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullParam
eters, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.va
r"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, type
of(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAUL
T_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Base.Pairs{Symbol, Union{
}, Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}, OrdinaryDiffEqRo
senbrock.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAU
LT_PRECS), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivia
l_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, OrdinaryDiffEqCo
re.InterpolationData{SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize,
typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing,
Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sc
iMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Vect
or{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, Or
dinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Fl
oat64, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRos
enbrock.RodasTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true,
SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##We
aveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Mai
n.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSE
RVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.Null
Parameters}, SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, S
ciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!),
Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".feke
te_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothi
ng, Nothing}, Float64, SciMLBase.NullParameters}, LinearSolve.LinearCache{M
atrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters,
LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{Linea
rAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompa
ctWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}
, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Fl
oat64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAl
gebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebr
a.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matri
x{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}
}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Mat
rix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, N
othing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPrecondi
tioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Dia
gonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciML
Logging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sile
nt, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{
Missing}}, Tuple{Nothing, Nothing}, Tuple{DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof
(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_
OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.
NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64
, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof
(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_
OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.
NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64
, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbroc
k.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PREC
S), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limit
er!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCo
re.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVect
or}, SciMLBase.DEStats, Nothing, Nothing, Nothing, Nothing}([[-0.2650941332
839412, 0.2759922279796341, 0.9238795325112867, -0.10646921403545888, -0.36
7574367807928, 0.9238795325112867, 0.37156334731940005, 0.09158213982829398
, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0], [-0.2650941332841742, 0.2759922279798762, 0.9238795325
111475, -0.10646921403555346, -0.3675743678082478, 0.9238795325111486, 0.37
156334731972307, 0.09158213982837514, 0.9238795325111487, 0.494556432801738
4 … -2.9381980376366813e-9, 4.86158636660428e-9, -1.2869567280894642e-9,
-3.2198125918363613e-9, -6.800682075927034e-10, -2.0613020551547345e-9, 1.3
95353671803122e-9, -5.950468450941714e-9, -3.1091445411164066e-9, -1.179492
0129632018e-9], [-0.26509413328457315, 0.275992227980291, 0.923879532510909
2, -0.10646921403571546, -0.3675743678087956, 0.9238795325109119, 0.3715633
4732027646, 0.09158213982851418, 0.9238795325109125, 0.4945564328017254 …
3.773980583547631e-9, 2.9180823857587613e-9, 6.262879513645702e-9, 3.90755
6772321569e-10, -9.50897966840413e-9, 2.9618965045870536e-9, 5.985906962402
134e-9, -9.907983177907806e-9, 4.857183359386243e-9, -1.0377246094378827e-9
], [-0.2650941332851672, 0.2759922279809085, 0.9238795325105542, -0.1064692
140359567, -0.3675743678096114, 0.9238795325105595, 0.3715633473211003, 0.0
915821398287212, 0.9238795325105607, 0.49455643280170614 … 2.515786108395
88e-11, 3.110473938978998e-9, -2.7489828242557556e-10, 6.738250344988411e-9
, 5.447683730400059e-9, 1.2408042216050644e-9, 4.738472372329455e-9, -3.816
383768998203e-9, 5.243285297956977e-9, -1.0814401231430751e-8], [-0.2650941
332860057, 0.2759922279817802, 0.9238795325100533, -0.10646921403629718, -0
.3675743678107627, 0.9238795325100623, 0.37156334732226315, 0.0915821398290
134, 0.9238795325100639, 0.4945564328016791 … -1.4930375118523534e-9, -1.
0677206569701569e-8, 1.2123400367883947e-9, -9.630793742110146e-10, -4.9646
15506365783e-10, -4.371563998672631e-9, -1.4449718034149703e-9, -1.57078559
05313584e-9, 1.6860645000515239e-9, 3.766706411702783e-9], [-0.265094133287
1582, 0.2759922279829783, 0.9238795325093646, -0.10646921403676515, -0.3675
743678123452, 0.9238795325093787, 0.37156334732386154, 0.09158213982941507,
0.9238795325093813, 0.4945564328016418 … -2.829457295085245e-9, 2.306789
14896376e-9, 4.019045677623573e-9, -3.0870113868925387e-9, -9.4023627166643
51e-10, 5.341789967056231e-10, -2.8827792190756617e-9, -9.360006859059129e-
9, -2.5753422404871796e-9, 3.264240878693443e-9], [-0.2650941332886537, 0.2
75992227984533, 0.923879532508471, -0.10646921403737239, -0.367574367814398
6, 0.9238795325084919, 0.3715633473259356, 0.09158213982993625, 0.923879532
5084955, 0.4945564328015934 … 1.3163880292736783e-9, -7.520964305631057e-
9, 9.434997922878726e-10, -1.916103204104861e-9, 1.646175760775223e-9, -2.2
97769321134328e-9, -4.630660131508884e-9, -5.46221286212423e-9, -1.92693497
78233163e-9, -5.1301181570586886e-9], [-0.2650941332905436, 0.2759922279864
977, 0.9238795325073419, -0.10646921403813973, -0.3675743678169936, 0.92387
9532507371, 0.3715633473285565, 0.09158213983059485, 0.9238795325073761, 0.
4945564328015323 … -1.8698349995330668e-9, -2.7464017247324886e-9, -8.827
596628252208e-10, 1.8128003092538084e-9, 7.164037967350772e-9, 3.1009199130
20742e-9, 8.036908245127148e-10, -5.923162444730369e-9, -4.0238435363288964
e-9, 2.764308117529542e-9], [-0.26509413329288956, 0.2759922279889366, 0.92
38795325059401, -0.10646921403909228, -0.36757436782021485, 0.9238795325059
795, 0.37156334733181, 0.09158213983141243, 0.9238795325059865, 0.494556432
8014564 … 3.950627054635561e-9, 1.771468244135932e-9, 2.101010074922371e-
9, 1.5672871413690205e-9, 8.320401732162137e-10, 5.104570071681936e-10, -3.
450993958468019e-9, 2.128621167396301e-10, 3.873601566936303e-9, 9.24230148
6958966e-10], [-0.26509413329585574, 0.27599222799202006, 0.923879532504168
, -0.10646921404029665, -0.3675743678242877, 0.9238795325042204, 0.37156334
733592344, 0.0915821398324461, 0.9238795325042298, 0.49455643280136047 …
-2.3171051265390624e-9, 8.027530206632113e-10, -4.287360150284864e-9, 1.325
69536898589e-9, 3.3766392808190897e-9, 4.965416267302419e-9, 5.352492006491
146e-10, -1.4576853573447413e-10, -1.0253611519609038e-9, 5.493174282941085
e-9] … [-0.40702629538697305, 0.3463758774581013, 0.845194265467228, 0.07
75293349555316, -0.26286635564642724, 0.9617122653322662, 0.710057684931900
6, 0.12129485192767821, 0.6936177931433077, 0.23482678332007131 … 6.45195
633876406e-16, 5.07580972346805e-16, 4.1269969664277186e-16, 8.003976549593
222e-16, -5.098071221153372e-16, 4.1493581733728216e-16, 4.991997837855795e
-17, 2.812127590431388e-16, -3.2792098322469923e-16, 4.986480541842396e-16]
, [-0.4070263264532298, 0.3463758773698235, 0.8451942505426039, 0.077529344
06298198, -0.26286629470298095, 0.9617122812558283, 0.71005775657401, 0.121
29481821517442, 0.693617725698552, 0.2348267768556548 … 5.460817414712736
e-16, 7.944599995175238e-16, 2.994717110861975e-16, -7.71874540637152e-16,
9.238612467296446e-17, -1.6084641081674373e-17, -6.843868519741059e-17, -5.
824772084963076e-16, -4.149216585893152e-16, 1.4944995287594123e-15], [-0.4
070263376170111, 0.3463758772665546, 0.845194245208702, 0.07752934739116238
, -0.262866272834908, 0.9617122869647575, 0.7100577823210024, 0.12129480600
474604, 0.6936177014765779, 0.23482677452588221 … -3.001685519005525e-16,
-4.927879823606554e-16, -7.672731763005923e-16, -3.618510822795282e-16, 4.
4407681458549273e-16, -4.3837837487325375e-16, -2.096697281370121e-16, -1.6
2820072767635e-16, -3.2578697248948327e-16, -4.41406222100141e-16], [-0.407
02633814491695, 0.3463758772875023, 0.8451942449458898, 0.07752934755832482
, -0.26286627176995647, 0.9617122872423663, 0.7100577836014212, 0.121294805
44675361, 0.6936177002633882, 0.2348267744343191 … 2.047744004585689e-16,
3.087767656201961e-16, -6.629439363779967e-17, 1.3815133735597564e-16, 1.4
459832646234013e-16, 1.8232152689521258e-16, 1.7402127852320578e-16, -2.575
1693857519957e-17, 2.3280192043677322e-17, 1.4033036960087473e-16], [-0.407
02633803512056, 0.3463758772808107, 0.8451942450015076, 0.07752934752441541
, -0.2628662719946926, 0.9617122871836725, 0.7100577833323328, 0.1212948055
5908226, 0.6936177005192113, 0.23482677445571434 … -1.0582134777386639e-1
6, -8.913087083349813e-17, 1.6810697580463989e-16, -5.443965972723508e-18,
-5.616852684998393e-17, 1.2399789163774917e-16, -4.184150768197455e-16, -3.
282372768911615e-16, 9.995597575218945e-17, -1.612845826147695e-16], [-0.40
702633803316884, 0.3463758772822533, 0.8451942450018565, 0.0775293475243368
, -0.26286627199424384, 0.9617122871838016, 0.7100577833339337, 0.121294805
5607276, 0.6936177005172849, 0.23482677445551656 … 2.591575719341713e-17,
-4.1091983191362936e-17, 2.0626833259059077e-17, -1.4463509678397755e-16,
2.0395831854526762e-16, -5.3764055880827863e-17, 1.4117565395739659e-16, 8.
780245483649738e-17, -1.6145292380536665e-17, -1.6940053860035896e-16], [-0
.4070263380337265, 0.3463758772823128, 0.8451942450015635, 0.07752934752447
81, -0.2628662719939629, 0.9617122871838669, 0.710057783333957, 0.121294805
56064282, 0.6936177005172758, 0.23482677445575265 … 2.7636063665353124e-1
7, 4.187014471734201e-17, -3.461270503955795e-17, -6.938151434523581e-17, -
7.775876497440629e-18, -3.8009136090821534e-17, 9.940124500639636e-18, -6.1
62808727301765e-17, 1.0065655084765698e-17, -8.961491141050544e-17], [-0.40
70263380336457, 0.34637587728226366, 0.8451942450016224, 0.0775293475245606
6, -0.26286627199395185, 0.9617122871838634, 0.7100577833340136, 0.12129480
556070482, 0.693617700517207, 0.23482677445572508 … -6.299379314752023e-1
8, 2.0987276361306345e-17, -1.3126982051883809e-17, -1.7195057781935976e-17
, 9.469632593821262e-18, 1.460032492868734e-17, -1.913154654592902e-18, -3.
123724743156313e-17, 6.573780646091978e-18, -1.4598073761116197e-17], [-0.4
070263380339401, 0.34637587728254415, 0.8451942450013658, 0.077529347524304
95, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.12129480
556104519, 0.6936177005173684, 0.2348267744554594 … -9.889037906229451e-1
8, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-18, -
2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18, -4.5
34073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], [-0.407
0263380339031, 0.3463758772825366, 0.8451942450013866, 0.0775293475242741,
-0.2628662719936408, 0.9617122871839714, 0.7100577833338019, 0.121294805560
93584, 0.6936177005173834, 0.23482677445553068 … 1.368813726986877e-17, 2
.682280828342363e-17, -2.0017019873396992e-17, 9.958428173144642e-18, 1.205
0515717680968e-17, 7.566959212233535e-19, 2.3335861812346315e-18, -7.502037
621165297e-18, -4.947746613447729e-18, 1.0568347471689677e-17]], nothing, n
othing, [0.0, 1.0e-6, 1.6470967226369328e-6, 2.294193445273866e-6, 2.977135
712855477e-6, 3.716381987606801e-6, 4.4980143822595655e-6, 5.32407414538628
4e-6, 6.198222174157507e-6, 7.15209167956576e-6 … 90.62924935784741, 96.4
1118414229268, 103.9199220781456, 114.87191298257301, 129.7006082275205, 15
6.73991527506118, 210.0365689126049, 349.1963120885956, 790.2907428803162,
1000.0], [[[-0.2650941332839412, 0.2759922279796341, 0.9238795325112867, -0
.10646921403545888, -0.367574367807928, 0.9238795325112867, 0.3715633473194
0005, 0.09158213982829398, 0.9238795325112867, 0.4945564328017459 … 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[2.329008649075334e-13, -2.
421182921470352e-13, 1.392337786488739e-13, 9.456938766104243e-14, 3.198054
0766111873e-13, 1.3819540581026445e-13, -3.231896226475528e-13, -8.12135405
0034028e-14, 1.3753604973773283e-13, 7.543874621631315e-15 … 4.7965760897
44114e-9, 1.2449916467794524e-8, 7.352986900688885e-9, -2.847357700022521e-
10, 6.488027516350089e-10, 6.191836107638364e-9, 1.2595141940986863e-9, -2.
1818996272074328e-9, 6.993748092029256e-10, -5.353042587201492e-9], [1.4400
12318091964e-16, -1.499212226662331e-16, -5.020171629429785e-16, 2.88435901
1772305e-17, 9.95807392983381e-17, -2.5044814080883225e-16, 1.9146074266787
502e-16, 4.719109377910017e-17, 4.759037198430588e-16, -1.6000425989246234e
-15 … -1.850194439057543e-8, -8.318397442548508e-8, -3.173043151966442e-8
, 1.02384226522217e-8, -3.1816862108305355e-9, -2.3983453904048587e-8, -8.9
93251884802461e-9, 3.0337849983070626e-8, 1.336949349263279e-8, 3.176578401
899016e-8], [-7.732734830149989e-16, 8.050629743102257e-16, 2.6949353232425
875e-15, -2.7274505903753265e-16, -9.416251782826912e-16, 2.366727131664605
e-15, -1.6397805685371173e-17, -4.041696104452426e-18, -4.077258281028749e-
17, 4.4643891251022475e-15 … 4.7264059915089154e-8, 4.951206389730138e-8,
4.383505373859753e-8, 1.9295159901805925e-8, 1.1261171229405317e-8, 4.1910
090315600974e-8, -3.660038551685818e-9, 1.9617038108300056e-8, 6.2858671779
62603e-9, -2.2777150340423118e-8]], [[9.754979130068976e-14, -1.01410521884
43501e-13, 5.821031128700952e-14, 3.9701797227940206e-14, 1.342668518720029
4e-13, 5.697871024818001e-14, -1.3496713794529226e-13, -3.3917314019086205e
-14, 5.849445106379199e-14, 2.990644083176309e-15 … 5.9265626846444606e-8
, -7.832313072890503e-8, 3.1164509245773836e-8, 5.779936067827917e-8, 1.426
099985827693e-8, 4.36083381193851e-8, -1.3887694928855505e-8, 1.08312497250
1413e-7, 4.698868781773118e-8, 1.8265461663822877e-8], [-2.705174941346661e
-16, 2.8163852860986083e-16, 9.4273754195843e-16, -4.1941627641377793e-16,
-1.447992660612928e-15, 3.639413577084834e-15, -6.09293552306679e-16, -1.50
17730254056623e-16, -1.5150300452406667e-15, -9.198583962499328e-16 … -2.
336163051005942e-7, 2.532976981793691e-7, -1.499458726887147e-7, -1.9430492
02746782e-7, -2.0756960042608595e-8, -1.7336444495451728e-7, 8.027692203576
83e-9, -3.27956881176238e-7, -1.5946545625321983e-7, -6.058699086792987e-8]
, [7.486636484253026e-16, -7.794414224862124e-16, -2.609167592608553e-15, 6
.536348856861068e-16, 2.2566094064126707e-15, -5.671873302714578e-15, -2.47
5630971060778e-16, -6.101882313477801e-17, -6.155571589512593e-16, 5.139662
639650202e-15 … 1.8439514261520042e-7, -2.4251146291223773e-7, 9.81840522
2981733e-8, 1.5834153955715792e-7, 9.469826250139925e-8, 1.353697789864804e
-7, -4.135193304281459e-8, 3.4719767986132704e-7, 8.619103616619875e-8, 6.4
0041585418059e-8]], [[9.751637745405484e-14, -1.0137573443355503e-13, 5.832
663304484553e-14, 3.947513024825673e-14, 1.3348430758381691e-13, 5.89454680
0230214e-14, -1.356038822274023e-13, -3.40742571784527e-14, 5.6911080712574
76e-14, 2.791229180839814e-15 … -6.325539171917654e-8, -4.880507394593051
e-8, -1.0365191747649828e-7, -1.8515106314101747e-9, 1.6588690992391823e-7,
-4.649669387786208e-8, -1.0167120236641661e-7, 1.5719886742734678e-7, -8.9
6572976044383e-8, 2.3587370549753437e-8], [6.395861771510233e-16, -6.658797
616997117e-16, -2.229064655814921e-15, 5.875631190520464e-16, 2.02850350810
2131e-15, -5.098583238496837e-15, 1.7800455714617074e-15, 4.387418987594553
e-16, 4.4259798214603884e-15, 2.041025455912056e-15 … 2.0867929993457815e
-7, 1.5456532677845713e-7, 3.4046620139628094e-7, -1.9963286847540608e-8, -
5.850907196208615e-7, 1.5383145128622714e-7, 3.1957077053963356e-7, -5.0203
17717437487e-7, 2.902816446565118e-7, -4.748576213572997e-8], [-1.609126074
7489834e-15, 1.6752777021532967e-15, 5.607965092395657e-15, -4.554107111206
343e-16, -1.572260166838109e-15, 3.951796194423215e-15, -1.821487903986573e
-15, -4.489564461245197e-16, -4.5290672653305025e-15, -4.148755784239142e-1
5 … -1.748846962424005e-7, -1.5758958660959831e-7, -2.795595125292649e-7,
-3.468123662477296e-8, 4.61017644343763e-7, -1.453587096721015e-7, -3.0361
35284038251e-7, 4.497042991024484e-7, -2.873088629913372e-7, 1.246451939898
1618e-7]], [[1.0839768617006801e-13, -1.1268734736393124e-13, 6.57398759508
1845e-14, 4.404009164136394e-14, 1.4892562260572978e-13, 6.504557319812252e
-14, -1.5101333714935568e-13, -3.7946456458778966e-14, 6.346539273229922e-1
4, 3.925947470755268e-15 … -8.595227384630061e-9, -5.726044812465624e-8,
5.2139465233569954e-9, -1.128714049123894e-7, -9.465264679776487e-8, -2.315
855626384194e-8, -8.548201711512563e-8, 5.009005631016199e-8, -8.9593332152
15087e-8, 1.8371520848551096e-7], [-6.234525541710712e-17, 6.49082674503853
9e-17, 2.1722895639343803e-16, 6.406306061477108e-16, 2.211713780302446e-15
, -5.559080435907259e-15, 1.9598322618055832e-15, 4.830553503304733e-16, 4.
873005804284966e-15, -1.5916820188247105e-15 … 4.883103844556398e-8, 2.39
49817316907025e-7, -2.5447814235325887e-8, 3.787314117408559e-7, 3.30001985
61650194e-7, 9.69873474816644e-8, 3.05428180255544e-7, -1.3641497937033323e
-7, 2.9235224927931854e-7, -6.313412423448591e-7], [2.1237718656089867e-15,
-2.2110807268400787e-15, -7.401557077265298e-15, -1.0481819791848935e-15,
-3.61874398954762e-15, 9.095529498203491e-15, -3.2381620530127223e-15, -7.9
81352629982038e-16, -8.0515789982781e-15, 2.285321632573246e-15 … -3.7336
2523336997e-8, -1.3022724913041303e-7, 1.6235298822792315e-8, -3.1117646804
08918e-7, -2.8593831079235797e-7, -5.205515092084365e-8, -2.579659487976866
5e-7, 1.1298669019901063e-7, -2.581397687600546e-7, 5.099666784398826e-7]],
[[1.2729448724344892e-13, -1.323323991600466e-13, 7.602693238800627e-14, 5
.1572112887736226e-14, 1.7439379803018807e-13, 7.646371867050377e-14, -1.76
57421310138227e-13, -4.437111879304546e-14, 7.527026953290118e-14, 4.092492
880846493e-15 … 2.708465783958937e-8, 1.7979795482002204e-7, -1.332038748
4673045e-8, 2.054793260891e-8, 4.057983366336542e-9, 7.546548480527036e-8,
3.104574030948411e-8, 3.81346864578176e-8, -2.882305549659228e-8, -5.584697
359142505e-8], [2.638880158529443e-16, -2.7473655074998015e-16, -9.19740123
8450057e-16, 1.5045457294348675e-16, 5.19429893136504e-16, -1.3056241263329
086e-15, -5.052145259216151e-16, -1.2452409208662128e-16, -1.25626198146692
58e-15, 4.007311296203613e-16 … -8.896237180928246e-8, -6.057324159286673
e-7, 1.0586961422866874e-8, -5.853112130814183e-8, 1.3858239459528202e-9, -
2.603256851418992e-7, -1.0566874507851492e-7, -1.1335610559049476e-7, 1.084
1435120697062e-7, 1.6147802107859376e-7], [-2.4976193613110903e-16, 2.60029
7197934356e-16, 8.704452937459741e-16, 3.022307818234314e-16, 1.04342170238
44295e-15, -2.622587533143813e-15, 1.6526534129402926e-15, 4.07342481573472
7e-16, 4.109266087352282e-15, 1.827199551266764e-16 … 1.0420450726374415e
-7, 4.918236438138313e-7, -2.3415390218230095e-8, 7.110833497267321e-8, -2.
834931427158748e-9, 2.202981479023184e-7, 1.1831003033601045e-7, 1.75384706
36806527e-7, -7.422671382036709e-8, -1.5419804266225507e-7]], [[1.422762638
805878e-13, -1.4790705483399017e-13, 8.511366027086067e-14, 5.7698577122757
9e-14, 1.9511380151610318e-13, 8.511061108186739e-14, -1.972806877726178e-1
3, -4.957501240019919e-14, 8.445355187240521e-14, 4.359777825354722e-15 …
4.3195185655811064e-8, -3.9591370610748844e-8, -6.13610283310654e-8, 5.615
3591324896904e-8, 1.0672180508708337e-8, -9.678924282846366e-9, 4.655951456
810997e-8, 1.4969572013438282e-7, 4.2487382734636815e-8, -6.276059981509176
e-8], [9.334953707266905e-16, -9.71871657612951e-16, -3.2534002959613602e-1
5, 4.444616150929372e-16, 1.5344600346218998e-15, -3.856862460138401e-15, 7
.358014285514888e-16, 1.8135888743718156e-16, 1.8294701306437145e-15, 3.304
1091760539187e-15 … -1.436178675825074e-7, 1.6445401098217013e-7, 1.89686
01816427323e-7, -1.9208952757044508e-7, -3.3482270084384905e-8, 4.533850408
325731e-8, -1.4062877539827099e-7, -4.722830234150871e-7, -1.34376671276067
45e-7, 2.436015038074281e-7], [-2.1728999252173405e-15, 2.2622284548424424e
-15, 7.572773271623023e-15, -9.494996523929977e-16, -3.2780530750503742e-15
, 8.239220161749195e-15, -1.4801059018605977e-15, -3.6481333977395476e-16,
-3.6802326138136255e-15, -6.580601980931413e-15 … 1.0915963162014489e-7,
-8.652446101016447e-8, -1.5957251287991334e-7, 1.8564536396420094e-7, 1.257
2472814549783e-8, -2.6497560555960854e-8, 1.5656727575589675e-7, 4.37766382
5053099e-7, 1.2696055039281198e-7, -1.7932857102211075e-7]], [[1.5859383999
45353e-13, -1.6486993854754912e-13, 9.616461627076922e-14, 6.46225578337961
6e-14, 2.1854060802424987e-13, 9.351171336452808e-14, -2.2081382137799575e-
13, -5.5486435886299764e-14, 9.315998069398061e-14, 4.8055300477197784e-15
… -1.8684750883661257e-8, 1.3231566076164336e-7, -1.4936501627409943e-8,
3.769597617883149e-8, -3.0184556534333754e-8, 3.60522270052365e-8, 7.161157
783450963e-8, 1.041204609902183e-7, 2.7426020088309984e-8, 8.68719223255961
6e-8], [-4.827620827360258e-16, 5.026085346418363e-16, 1.6823847308542384e-
15, -1.3766571423375286e-16, -4.752765527941903e-16, 1.1944950020365179e-15
, 3.0180416346548625e-16, 7.438819126896862e-17, 7.503372849066862e-16, 2.5
356941081489186e-15 … 6.883222835664354e-8, -4.43409531670426e-7, 5.03215
8927471288e-8, -1.3471704152783413e-7, 7.542726595036981e-8, -1.27254063289
56245e-7, -2.3455927502737803e-7, -3.4413861318984783e-7, -6.07238903568604
7e-8, -3.06885466310957e-7], [3.4192875899679825e-15, -3.559855468595075e-1
5, -1.1916558773831407e-14, -2.1859394460238923e-16, -7.546738433750318e-16
, 1.8968344340158358e-15, 1.1002239083641315e-15, 2.7118083779085923e-16, 2
.735669051956788e-15, -6.374783393319567e-15 … -4.555827264169388e-8, 4.0
24619011588676e-7, -3.385391040668277e-8, 9.827007992115115e-8, -1.15667541
2418732e-7, 8.125489561197523e-8, 1.888395669056863e-7, 3.4313229266449584e
-7, 6.800682579913679e-8, 2.441670886611288e-7]], [[1.7796445979724733e-13,
-1.8500768605817688e-13, 1.0640257226120706e-13, 7.236732685989553e-14, 2.
4473200871836764e-13, 1.046992673718445e-13, -2.4644313294995637e-13, -6.19
3058519340643e-14, 1.0638042045758794e-13, 6.163696760080131e-15 … 3.3780
601318791793e-8, 4.9503961062009e-8, 1.1675654957606491e-8, -3.225878790530
421e-8, -1.206443580389259e-7, -5.9048786413259235e-8, -2.153155527124158e-
8, 1.1220571394750231e-7, 6.903814810675059e-8, -4.581121381806065e-8], [-3
.61659197283323e-16, 3.7652706883945866e-16, 1.2603125483334366e-15, -1.587
3827915561096e-16, -5.480273696033283e-16, 1.3773341150699797e-15, -2.21658
85888488917e-15, -5.463398456220692e-16, -5.511576370067021e-15, -1.6292989
09981826e-15 … -1.3048691985765746e-7, -1.759310100922822e-7, -3.80566260
8374827e-8, 1.0958840580946393e-7, 3.9694330312467925e-7, 2.042758874685138
e-7, 9.463206483094778e-8, -3.9687550674669813e-7, -2.478148934742221e-7, 1
.5281098262873571e-7], [8.552397660947118e-16, -8.90398914061666e-16, -2.98
0596007487704e-15, -4.777059403008738e-16, -1.6492322276190324e-15, 4.14526
15651762445e-15, 3.7300246520205676e-15, 9.193685053315784e-16, 9.274578498
787597e-15, 1.828104212570456e-15 … 8.166076065848301e-8, 1.3762429824176
198e-7, 1.0364055331895934e-8, -1.1034073340598144e-7, -3.3825982494749514e
-7, -1.7992445705739276e-7, -5.8674853884516865e-8, 3.457218453203237e-7, 1
.825412127471602e-7, -1.3875734299391357e-7]], [[2.1197102143875668e-13, -2
.203602127817541e-13, 1.2646476855319824e-13, 8.602142679416823e-14, 2.9089
70705363114e-13, 1.2594623217188484e-13, -2.9369534818361214e-13, -7.380374
293061008e-14, 1.2604252795278236e-13, 6.98411004663418e-15 … -6.93185134
6922082e-8, -3.2474901240550226e-8, -4.3138419306593306e-8, -2.359260247979
3284e-8, -1.05663552457729e-8, -1.0639627943850269e-8, 6.016485462916882e-8
, -2.6685407436206117e-9, -6.983934204991137e-8, -2.028090872208354e-8], [8
.503315477476635e-16, -8.852889696292707e-16, -2.9636279454724476e-15, -3.7
541791895890775e-16, -1.2960920433412533e-15, 3.25752533962168e-15, -7.9697
95949658837e-16, -1.9643760271205906e-16, -1.981798613055377e-15, 1.1885112
144295883e-15 … 2.4874960221148326e-7, 1.0720393556749396e-7, 1.741413591
097744e-7, 6.559712438032968e-8, 1.640227898726473e-8, 2.493111112918529e-8
, -1.9860016570375251e-7, 1.3533156426073232e-8, 2.5225066546808844e-7, 5.2
39308528158099e-8], [-3.045070210097913e-15, 3.1702539064694722e-15, 1.0612
373827654362e-14, 1.0463997636023383e-15, 3.6125910668831605e-15, -9.080064
439887226e-15, 1.4987803965041519e-15, 3.6941618934811344e-16, 3.7266661058
39993e-15, -5.935006195322133e-15 … -2.0013819497033924e-7, -9.7396893010
24906e-8, -1.234452159536106e-7, -5.851628559007729e-8, -3.420069645183793e
-8, -6.319784762333243e-8, 1.5743192954956912e-7, -1.6275873051407166e-8, -
2.1816638700822127e-7, -8.529168370640278e-8]] … [[5.51535463328252e-8, 2
.5298357423514227e-10, 2.645701424356799e-8, -1.4796560143579518e-8, -1.084
1056580469145e-7, -2.8439197666066205e-8, -1.2452886751938582e-7, 5.8945353
47097569e-8, 1.1717246316326798e-7, 1.2904444838401166e-8 … -8.9777889204
21383e-15, -6.378741894477836e-14, -6.628764306889425e-14, -5.2143906181074
024e-14, -2.710207668315526e-13, -4.7608442199371664e-14, -3.01005831880363
8e-13, -3.214927219338173e-14, -1.7057826143056558e-13, -3.1837318604359804
e-13], [-4.0065538990987965e-8, 7.757166922682e-11, -1.932644341518057e-8,
1.2135618062729246e-8, 9.100159141723237e-8, 2.3895285196194683e-8, 1.02958
48520693135e-7, -4.5855927854266903e-8, -9.737981312264309e-8, -9.751300422
08869e-9 … 2.73794507881753e-14, 2.1053241060733812e-13, 2.17324710564788
44e-13, 1.705935403152266e-13, 9.05266448069153e-13, 1.5729491069844153e-13
, 1.0061704270448708e-12, 1.0731819742791523e-13, 5.682052986999642e-13, 1.
0598841040934532e-12], [8.300725850311214e-9, -7.812900762716138e-10, 4.317
626772593719e-9, -3.307217221700434e-9, -2.676297893558466e-8, -7.048546197
929573e-9, -3.0217671186657075e-8, 1.0689990455360105e-8, 2.906448698992171
2e-8, 1.5225372823725106e-9 … -2.77458141007138e-14, -1.8120382225343958e
-13, -1.8580125708668884e-13, -1.5023092252285896e-13, -7.622809175853718e-
13, -1.3597476812627765e-13, -8.538891230354988e-13, -9.390198394730395e-14
, -4.781630523362777e-13, -9.013495554464785e-13]], [[-7.847310180881833e-9
, 5.046308555354986e-10, -3.98589406014806e-9, 1.7042261831035332e-9, 1.604
0041865234114e-8, 4.246863967066101e-9, 1.8128107444952276e-8, -7.291297735
283094e-9, -1.7282715330828767e-8, -1.5424535866965716e-9 … -1.1843877612
961741e-14, -9.673393826988868e-15, -7.334157376942064e-15, -1.333872288217
6574e-14, 9.163919184723731e-15, -6.301252802813563e-15, -1.178953560603406
3e-16, -5.7832390709215535e-15, 5.4276245723495895e-15, -8.289116274474452e
-15], [-9.849908950416627e-9, -2.4784729759712434e-9, -3.727764494076792e-9
, 2.478945294928955e-9, 1.6547461808441204e-8, 4.3231056703559444e-9, 1.861
6658390841894e-8, -1.4084898918945651e-8, -1.6594845518847085e-8, -4.099657
386330258e-9 … 3.9806864859458105e-14, 3.1753621820667065e-14, 2.39107317
54973855e-14, 4.842572154225618e-14, -3.0477507140843334e-14, 2.09139813064
67292e-14, 1.9953133356645383e-15, 2.382421838664448e-14, -1.43553378451878
1e-14, 2.5553347842113872e-14], [5.413721359086831e-9, 2.1724940181469723e-
9, 1.7167988417342573e-9, -9.807456695598002e-10, -9.625592113825881e-9, -2
.5519218340482865e-9, -9.509462806529436e-9, 8.847732075631004e-9, 8.187619
15767055e-9, 3.2527632136062447e-9 … -3.915161138877712e-14, -3.440651384
3916743e-14, -2.2664249234384516e-14, -3.65599107759377e-14, 2.376684589575
7953e-14, -1.8048402427138352e-14, -3.2194618625986255e-15, -1.759952405911
8394e-14, 1.25330016002009e-14, -3.6486657852125814e-14]], [[-1.38310534388
22826e-8, -6.667322038270775e-10, -6.387481953961449e-9, 4.3723568739939724
e-9, 2.748728048017563e-8, 7.1606582996407065e-9, 3.2108703111476776e-8, -1
.614751310833006e-8, -3.0045977767303575e-8, -3.2571919933494404e-9 … -9.
407337439667638e-15, -1.2465368488725297e-14, -4.808769660278581e-15, 1.293
6723979245683e-14, -1.0273168266446189e-15, -5.149318298839142e-16, 1.62936
47206464396e-15, 1.0528946330326586e-14, 6.83664369523337e-15, -2.565508340
006948e-14], [6.531516660317306e-9, 1.955232578824657e-9, 2.344135119932036
3e-9, -2.2283320474027436e-9, -1.3901659374643311e-8, -3.6201202680679367e-
9, -1.4460486482166e-8, 1.0305920007395699e-8, 1.300100257859321e-8, 3.1890
891427798386e-9 … 3.2823734777347975e-14, 4.130538390859647e-14, 1.909572
2562372605e-14, -4.186739709914049e-14, 2.1681145068487015e-15, 5.358730174
633708e-15, -5.488340364032948e-15, -3.5933063699383065e-14, -2.15572973775
08467e-14, 8.77373758296362e-14], [-9.555032793322404e-10, -1.3892975000496
682e-9, 1.0922370315386465e-10, 3.481071032511515e-10, 3.099788409401229e-9
, 8.192041593965448e-10, 1.7995785363559177e-9, -3.448978877428886e-9, -1.2
391140139936228e-9, -1.7748338562240365e-9 … -2.5753550734273973e-14, -2.
988235730237544e-14, -1.0881323819629762e-14, 3.8005120741339686e-14, -6.07
3682341178346e-15, -2.8457027821781656e-15, 6.3963023418314784e-15, 3.23742
02654479125e-14, 2.0578955631103133e-14, -7.122690811938235e-14]], [[-3.258
322007191662e-9, 2.5042988314488213e-10, -1.6717635746471654e-9, 1.00906945
4962688e-9, 6.355385875114917e-9, 1.655781453776282e-9, 7.774030658228265e-
9, -3.116952879015037e-9, -7.413219934826355e-9, -4.455435933001594e-10 …
5.033493529685319e-15, 8.300823337119941e-15, 1.259278295404757e-14, 6.760
656740888077e-15, -7.41401175247845e-15, 7.404195500398103e-15, 3.845835779
225105e-15, 2.714845436842629e-15, 5.419892826101074e-15, 7.53653015365344e
-15], [4.310697941679785e-9, -8.220228644931229e-10, 2.4128074797241378e-9,
-1.3585288186916658e-9, -7.919915675795873e-9, -2.0552432000497336e-9, -1.
0248562374246265e-8, 3.065318376950429e-9, 9.955423855400764e-9, 9.82122929
959969e-11 … -1.783652814989498e-14, -2.873035162373235e-14, -4.106869092
6460964e-14, -2.4382595402197393e-14, 2.469871808661591e-14, -2.60337199220
43402e-14, -1.3881363689945104e-14, -8.654403682860375e-15, -1.881488290800
784e-14, -2.5835756400653708e-14], [-1.903216150241802e-9, 6.24245339412137
3e-10, -1.1723617979316167e-9, 6.319615562435287e-10, 3.0619322689326388e-9
, 7.859658921083793e-10, 4.356629633411863e-9, -7.281771412407089e-10, -4.3
3253050647912e-9, 3.0979565029614556e-10 … 1.3982679250849675e-14, 2.1816
83338958378e-14, 3.4665585801879286e-14, 2.0457389676290317e-14, -2.2497636
096858057e-14, 2.135416578741862e-14, 1.0671632728187625e-14, 7.10916874249
4543e-15, 1.6444125669957137e-14, 2.0886834930818327e-14]], [[2.06340769344
6566e-10, -1.0266028712447267e-10, 1.414419398794513e-10, -9.60106446008933
e-11, -4.71037743401947e-10, -1.2100852632992778e-10, -6.273114682907624e-1
0, 1.0304806356528356e-10, 6.241608380617505e-10, -2.8944461671247033e-11
… -3.553940696458567e-15, -4.9948496578047645e-15, 1.3942790262524406e-15,
-2.6923547421297998e-15, -2.2938948561575944e-15, -3.3215318122261034e-15,
-2.8657372968532883e-15, 4.852301052112967e-17, -3.846135223051176e-16, -2
.4128619826791767e-15], [-2.915615467472206e-11, 3.539319851477426e-10, -1.
5909373018872918e-10, 1.4468752358909952e-10, 2.1419010335490528e-10, 4.687
8801451958565e-11, 4.980018166543765e-10, 3.9096188060815085e-10, -5.781665
682679509e-10, 2.884124791911236e-10 … 1.265318521928865e-14, 1.703001672
001214e-14, -5.643397351588013e-15, 9.800572945282922e-15, 7.81357165674732
e-15, 1.0869973003130937e-14, 1.1113517639553915e-14, 1.6133753309404396e-1
5, 7.849312552667725e-16, 8.588484248107566e-15], [-5.333954361684344e-11,
-2.893938853590727e-10, 9.291924308092591e-11, -1.0036579038188222e-10, 4.9
14242094968298e-11, 2.1521846844062638e-11, -1.380211213016478e-10, -4.3206
946020554674e-10, 2.168205073549167e-10, -2.8904692445863707e-10 … -1.021
3295861475515e-14, -1.3921041537632033e-14, 3.7099841830430945e-15, -8.7428
7293130287e-15, -6.2883764956735465e-15, -1.0188279275039997e-14, -6.331132
7390935376e-15, 9.345855611133692e-16, -1.3014090651584569e-15, -6.00145538
0566052e-15]], [[3.187057901298734e-11, 2.7784049321474786e-11, 3.961770439
7931674e-12, -3.643037344126362e-13, -1.4444894021019183e-11, -3.9179520090
07272e-12, -6.706128974627692e-12, 4.366876286868699e-11, -7.71518451384008
1e-13, 7.789396192611014e-12 … 1.5912057831061998e-15, 1.1986708072190756
e-15, -2.8507880189902035e-15, 4.130949416557639e-17, 9.167082580192201e-16
, -2.2213305330203224e-15, 6.96854726169571e-15, 5.529518993951503e-15, -1.
529131668460274e-15, 2.509771382373756e-15], [-9.949204930095428e-11, -9.76
1520079064891e-11, -7.913380268025569e-12, -4.2422792762702234e-13, 5.13865
8761213154e-11, 1.4079500867079288e-11, 3.27169974170371e-11, -1.5331395725
452176e-10, -6.6790068660453894e-12, -3.124507842813276e-11 … -5.25678685
2761264e-15, -3.2810560335607304e-15, 9.654644501296788e-15, 4.712649478759
212e-16, -3.536180795105845e-15, 7.896727822552986e-15, -2.3915180607351758
e-14, -1.902342632185367e-14, 4.811951550921873e-15, -7.465412354418053e-15
], [7.329449288912294e-11, 8.513945845980207e-11, 4.1576505524256745e-13, 3
.7665819273019885e-12, -3.739449778144473e-11, -1.0530763575684135e-11, -2.
6092794499587177e-11, 1.2969730261135162e-10, 4.021309785900992e-12, 3.1010
40145033783e-11 … 4.285957329842194e-15, 2.775255766755853e-15, -8.514814
318283155e-15, 5.846121736328203e-16, 1.2169115155986543e-15, -6.5042453097
21925e-15, 1.9369035609873702e-14, 1.568355125080646e-14, -3.70184138035850
3e-15, 7.435591573188728e-15]], [[-6.451956818619737e-12, -5.04095036423798
7e-13, -2.901726756225562e-12, 2.749931187252945e-12, 2.704855002249843e-12
, 5.171391294340436e-13, 4.2343396710152786e-13, -1.9605480839679924e-12, -
9.213173414071606e-14, 4.529773472931291e-12 … -3.6333494504974964e-16, 7
.038161241399107e-16, -4.1337572548832995e-16, 2.4262405138275977e-15, -3.4
304175382807537e-15, 8.780302000751896e-16, -2.3038261612462674e-15, -1.661
0758525073056e-15, 2.632277179064434e-16, 2.837665076405279e-15], [2.010052
138142345e-11, 2.2811675495202767e-12, 8.743941177814185e-12, -8.5157184980
53142e-12, -7.694064756413545e-12, -1.4079386050668685e-12, -2.052341068991
2031e-13, 6.410261341077864e-12, -9.108668707912626e-13, -1.523096751035572
4e-11 … 9.430373958351987e-16, -2.5053658135141985e-15, 1.628704792660604
e-15, -7.83073647267954e-15, 1.1691230307769293e-14, -2.745589495025749e-15
, 7.554950888491016e-15, 6.2193937694349125e-15, -9.456213785333777e-16, -9
.198387008608645e-15], [-1.5732239636044977e-11, -2.666918284485848e-12, -6
.473935101911236e-12, 6.885926998597844e-12, 5.625163654807202e-12, 9.62992
3744193548e-13, -1.2358655208847674e-13, -5.6064271128303794e-12, 1.1184438
384874366e-12, 1.2952374484143767e-11 … -8.66618229827804e-16, 1.79603447
3075556e-15, -1.1984660066123004e-15, 7.140201265467048e-15, -1.00450197308
26691e-14, 2.565399456254601e-15, -6.420300329191185e-15, -5.12013026307645
2e-15, 7.715839162798855e-16, 8.480382497708802e-15]], [[6.535320246000965e
-13, -5.609298798096617e-13, 5.422285458105238e-13, -3.1785363448686955e-13
, -3.0422210458041287e-13, -5.750999739247001e-14, 2.816705844851628e-13, -
4.354328569949381e-13, -2.123168444379802e-13, -2.0447883467683809e-13 …
-4.687255275339247e-16, -6.848928541611897e-16, 5.65447511610256e-16, 1.150
806590211932e-15, 1.0651674825977799e-16, 6.556894523772381e-16, -1.6615357
65159114e-16, 1.0764754426186549e-15, -2.4139744767627507e-16, 1.5490812921
750338e-15], [-2.2646468913081407e-12, 2.0256646120257007e-12, -1.915030377
367744e-12, 3.523227970776411e-13, 5.554160138039692e-13, 1.235779331220327
4e-13, -1.3267343333817147e-12, 5.53960973563552e-13, 1.2590198485991484e-1
2, 1.1774872876200815e-12 … 1.6062626105360942e-15, 2.182827178877512e-15
, -1.7927651519745636e-15, -3.758939498708203e-15, -3.233443059374628e-16,
-2.2495574134835785e-15, 5.823568177597848e-16, -3.5348953710348592e-15, 9.
05405315853721e-16, -5.2294925585321334e-15], [1.8330299466327443e-12, -1.7
89720215392315e-12, 1.6164663351249926e-12, -1.8776571604741736e-13, -2.732
5350409261974e-13, -5.987027229549397e-14, 1.3320738156571497e-12, -2.59887
5426723857e-13, -1.3122760691518136e-12, -1.2268732878796368e-12 … -1.327
8459311373455e-15, -1.9905340326387966e-15, 1.5741814007164681e-15, 3.30147
19727053445e-15, 1.6429003922311208e-16, 1.7783847215431755e-15, -4.9465623
28331962e-16, 3.2456946594335096e-15, -8.785328769324825e-16, 4.61707575686
3966e-15]], [[-2.883938385363519e-13, -5.161878768529796e-15, -1.3556726855
828818e-13, -1.6712688434259562e-13, 3.108697992228e-14, 2.1846659824951694
e-14, -1.6663648796283563e-13, 4.093365969677104e-14, 1.6451338299251784e-1
3, -1.989538094008615e-13 … 9.486126036351531e-17, -3.620620055747176e-16
, 2.3209602301823506e-16, 3.012545189634977e-16, -1.688992230857175e-16, -2
.3415050967304144e-16, 3.136801118766208e-17, 5.275165341153587e-16, -1.255
11594037549e-16, 2.5733412455562867e-16], [3.4708213565145687e-12, -3.34917
92830308648e-12, 3.036845987548322e-12, 2.6656693632510335e-12, -4.62883509
5479685e-12, -1.4785129797997628e-12, 2.3454494837718287e-12, -4.1037336758
95282e-12, -1.688960394761347e-12, 3.049722066951961e-12 … -2.70924290710
49565e-16, 1.2258461700165453e-15, -7.762531004862413e-16, -9.9558826796195
36e-16, 5.860511536168085e-16, 7.437958217164689e-16, -7.650854069293489e-1
7, -1.7542901322300003e-15, 4.1853684323491226e-16, -9.141011347438608e-16]
, [-3.58307091064375e-12, 3.539586326791464e-12, -3.164334139065474e-12, -2
.7321294060229307e-12, 5.05787492257267e-12, 1.597709126357863e-12, -2.2192
26055533449e-12, 4.3302679941327675e-12, 1.5231506399262542e-12, -3.1068806
586597592e-12 … 3.0085945818914664e-16, -1.078599298820714e-15, 7.3386688
56856621e-16, 9.1638401551051e-16, -4.860098076057416e-16, -6.8208672153822
07e-16, 9.341274306792213e-17, 1.5255789929974405e-15, -3.723824676346482e-
16, 7.44943015540426e-16]], [[9.386062205023244e-15, -4.8842335606477305e-1
4, 2.4783640494181075e-14, -9.134217824700765e-14, -1.2532753935369067e-13,
-2.905600068212301e-14, -1.0607297407315322e-13, -2.8104874292852464e-14,
1.1263429339764584e-13, -6.289312850636147e-14 … 1.5351457380984269e-16,
-1.5210716715968303e-17, 1.4707132667510832e-16, 1.5261911405250162e-16, 5.
14983556302751e-17, -1.1459053746662135e-16, 9.827163035211398e-17, 1.02830
40918437123e-16, -5.232313552412591e-17, -1.36483141000052e-16], [-1.869246
6230777779e-13, 9.15469059594766e-13, -4.60594660530642e-13, 4.174617924559
3343e-13, 1.4944934269377257e-12, 3.785606323061935e-13, 3.830764793541696e
-13, 9.397197933933457e-13, -5.548437209094282e-13, 4.028057421035095e-14
… -5.439681208882951e-16, -9.218645762417292e-17, -4.451240145265388e-16,
-5.6275134663729045e-16, -2.5356481198161243e-16, 3.8724013312396145e-16, -
3.5168591933052875e-16, -3.611009240577747e-16, 1.78856862282501e-16, 4.482
995952563703e-16], [3.9012459418257586e-13, -8.343492067859798e-13, 5.16710
6523695732e-13, -3.6629315161340336e-13, -1.517012437366762e-12, -3.8115577
65514476e-13, -2.9997585540220074e-13, -9.40392775349287e-13, 4.74938245760
6865e-13, 8.171012041420787e-14 … 3.444608842721769e-16, -1.0077826041643
763e-16, 5.412744014614547e-16, 4.0915815269803087e-16, 1.545957709531198e-
16, -3.4526222401182245e-16, 2.85007359937849e-16, 3.877310898354694e-16, -
9.449776717427846e-17, -4.696434373674202e-16]]], nothing, SciMLBase.ODEPro
blem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullParamete
rs, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"#
#WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(
Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_O
BSERVED), Nothing, Nothing, Nothing, Nothing}, Base.Pairs{Symbol, Union{},
Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".feket
e_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#
225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothi
ng, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!, [1.0 0.0 …
0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], noth
ing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEF
AULT_OBSERVED, nothing, nothing, nothing, nothing), [-0.2650941332839412, 0
.2759922279796341, 0.9238795325112867, -0.10646921403545888, -0.36757436780
7928, 0.9238795325112867, 0.37156334731940005, 0.09158213982829398, 0.92387
95325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0], (0.0, 1000.0), SciMLBase.NullParameters(), Base.Pairs{Symbol, U
nion{}, Tuple{}, @NamedTuple{}}(), SciMLBase.StandardODEProblem()), Ordinar
yDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqC
ore.DEFAULT_PRECS), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCo
re.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}(nothing,
OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDiffEqCore.trivial_limiter!, Ord
inaryDiffEqCore.trivial_limiter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}())), OrdinaryDiffEqCore.Interpola
tionData{SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.
var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, ty
peof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFA
ULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Vector{Float64}}
, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, OrdinaryDiffEq
Rosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vecto
r{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.Roda
sTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.O
DEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#2
25".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##Weav
eSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothi
ng, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters},
SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Ful
lSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float
64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}
, Float64, SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float6
4}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve
.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{
Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64
, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vect
or{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Fl
oat64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{F
loat64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}},
Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefV
alue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}
, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{Linea
rAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float6
4, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Sile
nt, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciML
Logging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sile
nt, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, T
uple{Nothing, Nothing}, Tuple{DifferentiationInterfaceForwardDiffExt.Forwar
dDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##
WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParamete
rs}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDif
f.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.Forwar
dDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##
WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParamete
rs}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDif
f.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0,
ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:for
ward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof
(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_l
imiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVector}(SciMLBas
e.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBo
x#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##W
eaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), No
thing, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!,
[1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.
0 0.0], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, S
ciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [[-0.265094
1332839412, 0.2759922279796341, 0.9238795325112867, -0.10646921403545888, -
0.367574367807928, 0.9238795325112867, 0.37156334731940005, 0.0915821398282
9398, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0
.0, 0.0, 0.0, 0.0, 0.0], [-0.2650941332841742, 0.2759922279798762, 0.923879
5325111475, -0.10646921403555346, -0.3675743678082478, 0.9238795325111486,
0.37156334731972307, 0.09158213982837514, 0.9238795325111487, 0.49455643280
17384 … -2.9381980376366813e-9, 4.86158636660428e-9, -1.2869567280894642e
-9, -3.2198125918363613e-9, -6.800682075927034e-10, -2.0613020551547345e-9,
1.395353671803122e-9, -5.950468450941714e-9, -3.1091445411164066e-9, -1.17
94920129632018e-9], [-0.26509413328457315, 0.275992227980291, 0.92387953251
09092, -0.10646921403571546, -0.3675743678087956, 0.9238795325109119, 0.371
56334732027646, 0.09158213982851418, 0.9238795325109125, 0.4945564328017254
… 3.773980583547631e-9, 2.9180823857587613e-9, 6.262879513645702e-9, 3.9
07556772321569e-10, -9.50897966840413e-9, 2.9618965045870536e-9, 5.98590696
2402134e-9, -9.907983177907806e-9, 4.857183359386243e-9, -1.037724609437882
7e-9], [-0.2650941332851672, 0.2759922279809085, 0.9238795325105542, -0.106
4692140359567, -0.3675743678096114, 0.9238795325105595, 0.3715633473211003,
0.0915821398287212, 0.9238795325105607, 0.49455643280170614 … 2.51578610
839588e-11, 3.110473938978998e-9, -2.7489828242557556e-10, 6.73825034498841
1e-9, 5.447683730400059e-9, 1.2408042216050644e-9, 4.738472372329455e-9, -3
.816383768998203e-9, 5.243285297956977e-9, -1.0814401231430751e-8], [-0.265
0941332860057, 0.2759922279817802, 0.9238795325100533, -0.10646921403629718
, -0.3675743678107627, 0.9238795325100623, 0.37156334732226315, 0.091582139
8290134, 0.9238795325100639, 0.4945564328016791 … -1.4930375118523534e-9,
-1.0677206569701569e-8, 1.2123400367883947e-9, -9.630793742110146e-10, -4.
964615506365783e-10, -4.371563998672631e-9, -1.4449718034149703e-9, -1.5707
855905313584e-9, 1.6860645000515239e-9, 3.766706411702783e-9], [-0.26509413
32871582, 0.2759922279829783, 0.9238795325093646, -0.10646921403676515, -0.
3675743678123452, 0.9238795325093787, 0.37156334732386154, 0.09158213982941
507, 0.9238795325093813, 0.4945564328016418 … -2.829457295085245e-9, 2.30
678914896376e-9, 4.019045677623573e-9, -3.0870113868925387e-9, -9.402362716
664351e-10, 5.341789967056231e-10, -2.8827792190756617e-9, -9.3600068590591
29e-9, -2.5753422404871796e-9, 3.264240878693443e-9], [-0.2650941332886537,
0.275992227984533, 0.923879532508471, -0.10646921403737239, -0.36757436781
43986, 0.9238795325084919, 0.3715633473259356, 0.09158213982993625, 0.92387
95325084955, 0.4945564328015934 … 1.3163880292736783e-9, -7.5209643056310
57e-9, 9.434997922878726e-10, -1.916103204104861e-9, 1.646175760775223e-9,
-2.297769321134328e-9, -4.630660131508884e-9, -5.46221286212423e-9, -1.9269
349778233163e-9, -5.1301181570586886e-9], [-0.2650941332905436, 0.275992227
9864977, 0.9238795325073419, -0.10646921403813973, -0.3675743678169936, 0.9
23879532507371, 0.3715633473285565, 0.09158213983059485, 0.9238795325073761
, 0.4945564328015323 … -1.8698349995330668e-9, -2.7464017247324886e-9, -8
.827596628252208e-10, 1.8128003092538084e-9, 7.164037967350772e-9, 3.100919
913020742e-9, 8.036908245127148e-10, -5.923162444730369e-9, -4.023843536328
8964e-9, 2.764308117529542e-9], [-0.26509413329288956, 0.2759922279889366,
0.9238795325059401, -0.10646921403909228, -0.36757436782021485, 0.923879532
5059795, 0.37156334733181, 0.09158213983141243, 0.9238795325059865, 0.49455
64328014564 … 3.950627054635561e-9, 1.771468244135932e-9, 2.1010100749223
71e-9, 1.5672871413690205e-9, 8.320401732162137e-10, 5.104570071681936e-10,
-3.450993958468019e-9, 2.128621167396301e-10, 3.873601566936303e-9, 9.2423
01486958966e-10], [-0.26509413329585574, 0.27599222799202006, 0.92387953250
4168, -0.10646921404029665, -0.3675743678242877, 0.9238795325042204, 0.3715
6334733592344, 0.0915821398324461, 0.9238795325042298, 0.49455643280136047
… -2.3171051265390624e-9, 8.027530206632113e-10, -4.287360150284864e-9, 1
.32569536898589e-9, 3.3766392808190897e-9, 4.965416267302419e-9, 5.35249200
6491146e-10, -1.4576853573447413e-10, -1.0253611519609038e-9, 5.49317428294
1085e-9] … [-0.40702629538697305, 0.3463758774581013, 0.845194265467228,
0.0775293349555316, -0.26286635564642724, 0.9617122653322662, 0.71005768493
19006, 0.12129485192767821, 0.6936177931433077, 0.23482678332007131 … 6.4
5195633876406e-16, 5.07580972346805e-16, 4.1269969664277186e-16, 8.00397654
9593222e-16, -5.098071221153372e-16, 4.1493581733728216e-16, 4.991997837855
795e-17, 2.812127590431388e-16, -3.2792098322469923e-16, 4.986480541842396e
-16], [-0.4070263264532298, 0.3463758773698235, 0.8451942505426039, 0.07752
934406298198, -0.26286629470298095, 0.9617122812558283, 0.71005775657401, 0
.12129481821517442, 0.693617725698552, 0.2348267768556548 … 5.46081741471
2736e-16, 7.944599995175238e-16, 2.994717110861975e-16, -7.71874540637152e-
16, 9.238612467296446e-17, -1.6084641081674373e-17, -6.843868519741059e-17,
-5.824772084963076e-16, -4.149216585893152e-16, 1.4944995287594123e-15], [
-0.4070263376170111, 0.3463758772665546, 0.845194245208702, 0.0775293473911
6238, -0.262866272834908, 0.9617122869647575, 0.7100577823210024, 0.1212948
0600474604, 0.6936177014765779, 0.23482677452588221 … -3.001685519005525e
-16, -4.927879823606554e-16, -7.672731763005923e-16, -3.618510822795282e-16
, 4.4407681458549273e-16, -4.3837837487325375e-16, -2.096697281370121e-16,
-1.62820072767635e-16, -3.2578697248948327e-16, -4.41406222100141e-16], [-0
.40702633814491695, 0.3463758772875023, 0.8451942449458898, 0.0775293475583
2482, -0.26286627176995647, 0.9617122872423663, 0.7100577836014212, 0.12129
480544675361, 0.6936177002633882, 0.2348267744343191 … 2.047744004585689e
-16, 3.087767656201961e-16, -6.629439363779967e-17, 1.3815133735597564e-16,
1.4459832646234013e-16, 1.8232152689521258e-16, 1.7402127852320578e-16, -2
.5751693857519957e-17, 2.3280192043677322e-17, 1.4033036960087473e-16], [-0
.40702633803512056, 0.3463758772808107, 0.8451942450015076, 0.0775293475244
1541, -0.2628662719946926, 0.9617122871836725, 0.7100577833323328, 0.121294
80555908226, 0.6936177005192113, 0.23482677445571434 … -1.058213477738663
9e-16, -8.913087083349813e-17, 1.6810697580463989e-16, -5.443965972723508e-
18, -5.616852684998393e-17, 1.2399789163774917e-16, -4.184150768197455e-16,
-3.282372768911615e-16, 9.995597575218945e-17, -1.612845826147695e-16], [-
0.40702633803316884, 0.3463758772822533, 0.8451942450018565, 0.077529347524
3368, -0.26286627199424384, 0.9617122871838016, 0.7100577833339337, 0.12129
48055607276, 0.6936177005172849, 0.23482677445551656 … 2.591575719341713e
-17, -4.1091983191362936e-17, 2.0626833259059077e-17, -1.4463509678397755e-
16, 2.0395831854526762e-16, -5.3764055880827863e-17, 1.4117565395739659e-16
, 8.780245483649738e-17, -1.6145292380536665e-17, -1.6940053860035896e-16],
[-0.4070263380337265, 0.3463758772823128, 0.8451942450015635, 0.0775293475
244781, -0.2628662719939629, 0.9617122871838669, 0.710057783333957, 0.12129
480556064282, 0.6936177005172758, 0.23482677445575265 … 2.763606366535312
4e-17, 4.187014471734201e-17, -3.461270503955795e-17, -6.938151434523581e-1
7, -7.775876497440629e-18, -3.8009136090821534e-17, 9.940124500639636e-18,
-6.162808727301765e-17, 1.0065655084765698e-17, -8.961491141050544e-17], [-
0.4070263380336457, 0.34637587728226366, 0.8451942450016224, 0.077529347524
56066, -0.26286627199395185, 0.9617122871838634, 0.7100577833340136, 0.1212
9480556070482, 0.693617700517207, 0.23482677445572508 … -6.29937931475202
3e-18, 2.0987276361306345e-17, -1.3126982051883809e-17, -1.7195057781935976
e-17, 9.469632593821262e-18, 1.460032492868734e-17, -1.913154654592902e-18,
-3.123724743156313e-17, 6.573780646091978e-18, -1.4598073761116197e-17], [
-0.4070263380339401, 0.34637587728254415, 0.8451942450013658, 0.07752934752
430495, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.1212
9480556104519, 0.6936177005173684, 0.2348267744554594 … -9.88903790622945
1e-18, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-1
8, -2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18,
-4.534073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], [-0
.4070263380339031, 0.3463758772825366, 0.8451942450013866, 0.07752934752427
41, -0.2628662719936408, 0.9617122871839714, 0.7100577833338019, 0.12129480
556093584, 0.6936177005173834, 0.23482677445553068 … 1.368813726986877e-1
7, 2.682280828342363e-17, -2.0017019873396992e-17, 9.958428173144642e-18, 1
.2050515717680968e-17, 7.566959212233535e-19, 2.3335861812346315e-18, -7.50
2037621165297e-18, -4.947746613447729e-18, 1.0568347471689677e-17]], [0.0,
1.0e-6, 1.6470967226369328e-6, 2.294193445273866e-6, 2.977135712855477e-6,
3.716381987606801e-6, 4.4980143822595655e-6, 5.324074145386284e-6, 6.198222
174157507e-6, 7.15209167956576e-6 … 90.62924935784741, 96.41118414229268,
103.9199220781456, 114.87191298257301, 129.7006082275205, 156.739915275061
18, 210.0365689126049, 349.1963120885956, 790.2907428803162, 1000.0], [[[-0
.2650941332839412, 0.2759922279796341, 0.9238795325112867, -0.1064692140354
5888, -0.367574367807928, 0.9238795325112867, 0.37156334731940005, 0.091582
13982829398, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[2.329008649075334e-13, -2.42118292147035
2e-13, 1.392337786488739e-13, 9.456938766104243e-14, 3.1980540766111873e-13
, 1.3819540581026445e-13, -3.231896226475528e-13, -8.121354050034028e-14, 1
.3753604973773283e-13, 7.543874621631315e-15 … 4.796576089744114e-9, 1.24
49916467794524e-8, 7.352986900688885e-9, -2.847357700022521e-10, 6.48802751
6350089e-10, 6.191836107638364e-9, 1.2595141940986863e-9, -2.18189962720743
28e-9, 6.993748092029256e-10, -5.353042587201492e-9], [1.440012318091964e-1
6, -1.499212226662331e-16, -5.020171629429785e-16, 2.884359011772305e-17, 9
.95807392983381e-17, -2.5044814080883225e-16, 1.9146074266787502e-16, 4.719
109377910017e-17, 4.759037198430588e-16, -1.6000425989246234e-15 … -1.850
194439057543e-8, -8.318397442548508e-8, -3.173043151966442e-8, 1.0238422652
2217e-8, -3.1816862108305355e-9, -2.3983453904048587e-8, -8.993251884802461
e-9, 3.0337849983070626e-8, 1.336949349263279e-8, 3.176578401899016e-8], [-
7.732734830149989e-16, 8.050629743102257e-16, 2.6949353232425875e-15, -2.72
74505903753265e-16, -9.416251782826912e-16, 2.366727131664605e-15, -1.63978
05685371173e-17, -4.041696104452426e-18, -4.077258281028749e-17, 4.46438912
51022475e-15 … 4.7264059915089154e-8, 4.951206389730138e-8, 4.38350537385
9753e-8, 1.9295159901805925e-8, 1.1261171229405317e-8, 4.1910090315600974e-
8, -3.660038551685818e-9, 1.9617038108300056e-8, 6.285867177962603e-9, -2.2
777150340423118e-8]], [[9.754979130068976e-14, -1.0141052188443501e-13, 5.8
21031128700952e-14, 3.9701797227940206e-14, 1.3426685187200294e-13, 5.69787
1024818001e-14, -1.3496713794529226e-13, -3.3917314019086205e-14, 5.8494451
06379199e-14, 2.990644083176309e-15 … 5.9265626846444606e-8, -7.832313072
890503e-8, 3.1164509245773836e-8, 5.779936067827917e-8, 1.426099985827693e-
8, 4.36083381193851e-8, -1.3887694928855505e-8, 1.083124972501413e-7, 4.698
868781773118e-8, 1.8265461663822877e-8], [-2.705174941346661e-16, 2.8163852
860986083e-16, 9.4273754195843e-16, -4.1941627641377793e-16, -1.44799266061
2928e-15, 3.639413577084834e-15, -6.09293552306679e-16, -1.5017730254056623
e-16, -1.5150300452406667e-15, -9.198583962499328e-16 … -2.33616305100594
2e-7, 2.532976981793691e-7, -1.499458726887147e-7, -1.943049202746782e-7, -
2.0756960042608595e-8, -1.7336444495451728e-7, 8.02769220357683e-9, -3.2795
6881176238e-7, -1.5946545625321983e-7, -6.058699086792987e-8], [7.486636484
253026e-16, -7.794414224862124e-16, -2.609167592608553e-15, 6.5363488568610
68e-16, 2.2566094064126707e-15, -5.671873302714578e-15, -2.475630971060778e
-16, -6.101882313477801e-17, -6.155571589512593e-16, 5.139662639650202e-15
… 1.8439514261520042e-7, -2.4251146291223773e-7, 9.818405222981733e-8, 1.
5834153955715792e-7, 9.469826250139925e-8, 1.353697789864804e-7, -4.1351933
04281459e-8, 3.4719767986132704e-7, 8.619103616619875e-8, 6.40041585418059e
-8]], [[9.751637745405484e-14, -1.0137573443355503e-13, 5.832663304484553e-
14, 3.947513024825673e-14, 1.3348430758381691e-13, 5.894546800230214e-14, -
1.356038822274023e-13, -3.40742571784527e-14, 5.691108071257476e-14, 2.7912
29180839814e-15 … -6.325539171917654e-8, -4.880507394593051e-8, -1.036519
1747649828e-7, -1.8515106314101747e-9, 1.6588690992391823e-7, -4.6496693877
86208e-8, -1.0167120236641661e-7, 1.5719886742734678e-7, -8.96572976044383e
-8, 2.3587370549753437e-8], [6.395861771510233e-16, -6.658797616997117e-16,
-2.229064655814921e-15, 5.875631190520464e-16, 2.028503508102131e-15, -5.0
98583238496837e-15, 1.7800455714617074e-15, 4.387418987594553e-16, 4.425979
8214603884e-15, 2.041025455912056e-15 … 2.0867929993457815e-7, 1.54565326
77845713e-7, 3.4046620139628094e-7, -1.9963286847540608e-8, -5.850907196208
615e-7, 1.5383145128622714e-7, 3.1957077053963356e-7, -5.020317717437487e-7
, 2.902816446565118e-7, -4.748576213572997e-8], [-1.6091260747489834e-15, 1
.6752777021532967e-15, 5.607965092395657e-15, -4.554107111206343e-16, -1.57
2260166838109e-15, 3.951796194423215e-15, -1.821487903986573e-15, -4.489564
461245197e-16, -4.5290672653305025e-15, -4.148755784239142e-15 … -1.74884
6962424005e-7, -1.5758958660959831e-7, -2.795595125292649e-7, -3.4681236624
77296e-8, 4.61017644343763e-7, -1.453587096721015e-7, -3.036135284038251e-7
, 4.497042991024484e-7, -2.873088629913372e-7, 1.2464519398981618e-7]], [[1
.0839768617006801e-13, -1.1268734736393124e-13, 6.573987595081845e-14, 4.40
4009164136394e-14, 1.4892562260572978e-13, 6.504557319812252e-14, -1.510133
3714935568e-13, -3.7946456458778966e-14, 6.346539273229922e-14, 3.925947470
755268e-15 … -8.595227384630061e-9, -5.726044812465624e-8, 5.213946523356
9954e-9, -1.128714049123894e-7, -9.465264679776487e-8, -2.315855626384194e-
8, -8.548201711512563e-8, 5.009005631016199e-8, -8.959333215215087e-8, 1.83
71520848551096e-7], [-6.234525541710712e-17, 6.490826745038539e-17, 2.17228
95639343803e-16, 6.406306061477108e-16, 2.211713780302446e-15, -5.559080435
907259e-15, 1.9598322618055832e-15, 4.830553503304733e-16, 4.87300580428496
6e-15, -1.5916820188247105e-15 … 4.883103844556398e-8, 2.3949817316907025
e-7, -2.5447814235325887e-8, 3.787314117408559e-7, 3.3000198561650194e-7, 9
.69873474816644e-8, 3.05428180255544e-7, -1.3641497937033323e-7, 2.92352249
27931854e-7, -6.313412423448591e-7], [2.1237718656089867e-15, -2.2110807268
400787e-15, -7.401557077265298e-15, -1.0481819791848935e-15, -3.61874398954
762e-15, 9.095529498203491e-15, -3.2381620530127223e-15, -7.981352629982038
e-16, -8.0515789982781e-15, 2.285321632573246e-15 … -3.73362523336997e-8,
-1.3022724913041303e-7, 1.6235298822792315e-8, -3.111764680408918e-7, -2.8
593831079235797e-7, -5.205515092084365e-8, -2.5796594879768665e-7, 1.129866
9019901063e-7, -2.581397687600546e-7, 5.099666784398826e-7]], [[1.272944872
4344892e-13, -1.323323991600466e-13, 7.602693238800627e-14, 5.1572112887736
226e-14, 1.7439379803018807e-13, 7.646371867050377e-14, -1.7657421310138227
e-13, -4.437111879304546e-14, 7.527026953290118e-14, 4.092492880846493e-15
… 2.708465783958937e-8, 1.7979795482002204e-7, -1.3320387484673045e-8, 2.
054793260891e-8, 4.057983366336542e-9, 7.546548480527036e-8, 3.104574030948
411e-8, 3.81346864578176e-8, -2.882305549659228e-8, -5.584697359142505e-8],
[2.638880158529443e-16, -2.7473655074998015e-16, -9.197401238450057e-16, 1
.5045457294348675e-16, 5.19429893136504e-16, -1.3056241263329086e-15, -5.05
2145259216151e-16, -1.2452409208662128e-16, -1.2562619814669258e-15, 4.0073
11296203613e-16 … -8.896237180928246e-8, -6.057324159286673e-7, 1.0586961
422866874e-8, -5.853112130814183e-8, 1.3858239459528202e-9, -2.603256851418
992e-7, -1.0566874507851492e-7, -1.1335610559049476e-7, 1.0841435120697062e
-7, 1.6147802107859376e-7], [-2.4976193613110903e-16, 2.600297197934356e-16
, 8.704452937459741e-16, 3.022307818234314e-16, 1.0434217023844295e-15, -2.
622587533143813e-15, 1.6526534129402926e-15, 4.073424815734727e-16, 4.10926
6087352282e-15, 1.827199551266764e-16 … 1.0420450726374415e-7, 4.91823643
8138313e-7, -2.3415390218230095e-8, 7.110833497267321e-8, -2.83493142715874
8e-9, 2.202981479023184e-7, 1.1831003033601045e-7, 1.7538470636806527e-7, -
7.422671382036709e-8, -1.5419804266225507e-7]], [[1.422762638805878e-13, -1
.4790705483399017e-13, 8.511366027086067e-14, 5.76985771227579e-14, 1.95113
80151610318e-13, 8.511061108186739e-14, -1.972806877726178e-13, -4.95750124
0019919e-14, 8.445355187240521e-14, 4.359777825354722e-15 … 4.31951856558
11064e-8, -3.9591370610748844e-8, -6.13610283310654e-8, 5.6153591324896904e
-8, 1.0672180508708337e-8, -9.678924282846366e-9, 4.655951456810997e-8, 1.4
969572013438282e-7, 4.2487382734636815e-8, -6.276059981509176e-8], [9.33495
3707266905e-16, -9.71871657612951e-16, -3.2534002959613602e-15, 4.444616150
929372e-16, 1.5344600346218998e-15, -3.856862460138401e-15, 7.3580142855148
88e-16, 1.8135888743718156e-16, 1.8294701306437145e-15, 3.3041091760539187e
-15 … -1.436178675825074e-7, 1.6445401098217013e-7, 1.8968601816427323e-7
, -1.9208952757044508e-7, -3.3482270084384905e-8, 4.533850408325731e-8, -1.
4062877539827099e-7, -4.722830234150871e-7, -1.3437667127606745e-7, 2.43601
5038074281e-7], [-2.1728999252173405e-15, 2.2622284548424424e-15, 7.5727732
71623023e-15, -9.494996523929977e-16, -3.2780530750503742e-15, 8.2392201617
49195e-15, -1.4801059018605977e-15, -3.6481333977395476e-16, -3.68023261381
36255e-15, -6.580601980931413e-15 … 1.0915963162014489e-7, -8.65244610101
6447e-8, -1.5957251287991334e-7, 1.8564536396420094e-7, 1.2572472814549783e
-8, -2.6497560555960854e-8, 1.5656727575589675e-7, 4.377663825053099e-7, 1.
2696055039281198e-7, -1.7932857102211075e-7]], [[1.585938399945353e-13, -1.
6486993854754912e-13, 9.616461627076922e-14, 6.462255783379616e-14, 2.18540
60802424987e-13, 9.351171336452808e-14, -2.2081382137799575e-13, -5.5486435
886299764e-14, 9.315998069398061e-14, 4.8055300477197784e-15 … -1.8684750
883661257e-8, 1.3231566076164336e-7, -1.4936501627409943e-8, 3.769597617883
149e-8, -3.0184556534333754e-8, 3.60522270052365e-8, 7.161157783450963e-8,
1.041204609902183e-7, 2.7426020088309984e-8, 8.687192232559616e-8], [-4.827
620827360258e-16, 5.026085346418363e-16, 1.6823847308542384e-15, -1.3766571
423375286e-16, -4.752765527941903e-16, 1.1944950020365179e-15, 3.0180416346
548625e-16, 7.438819126896862e-17, 7.503372849066862e-16, 2.535694108148918
6e-15 … 6.883222835664354e-8, -4.43409531670426e-7, 5.032158927471288e-8,
-1.3471704152783413e-7, 7.542726595036981e-8, -1.2725406328956245e-7, -2.3
455927502737803e-7, -3.4413861318984783e-7, -6.072389035686047e-8, -3.06885
466310957e-7], [3.4192875899679825e-15, -3.559855468595075e-15, -1.19165587
73831407e-14, -2.1859394460238923e-16, -7.546738433750318e-16, 1.8968344340
158358e-15, 1.1002239083641315e-15, 2.7118083779085923e-16, 2.7356690519567
88e-15, -6.374783393319567e-15 … -4.555827264169388e-8, 4.024619011588676
e-7, -3.385391040668277e-8, 9.827007992115115e-8, -1.156675412418732e-7, 8.
125489561197523e-8, 1.888395669056863e-7, 3.4313229266449584e-7, 6.80068257
9913679e-8, 2.441670886611288e-7]], [[1.7796445979724733e-13, -1.8500768605
817688e-13, 1.0640257226120706e-13, 7.236732685989553e-14, 2.44732008718367
64e-13, 1.046992673718445e-13, -2.4644313294995637e-13, -6.193058519340643e
-14, 1.0638042045758794e-13, 6.163696760080131e-15 … 3.3780601318791793e-
8, 4.9503961062009e-8, 1.1675654957606491e-8, -3.225878790530421e-8, -1.206
443580389259e-7, -5.9048786413259235e-8, -2.153155527124158e-8, 1.122057139
4750231e-7, 6.903814810675059e-8, -4.581121381806065e-8], [-3.6165919728332
3e-16, 3.7652706883945866e-16, 1.2603125483334366e-15, -1.5873827915561096e
-16, -5.480273696033283e-16, 1.3773341150699797e-15, -2.2165885888488917e-1
5, -5.463398456220692e-16, -5.511576370067021e-15, -1.629298909981826e-15
… -1.3048691985765746e-7, -1.759310100922822e-7, -3.805662608374827e-8, 1.
0958840580946393e-7, 3.9694330312467925e-7, 2.042758874685138e-7, 9.4632064
83094778e-8, -3.9687550674669813e-7, -2.478148934742221e-7, 1.5281098262873
571e-7], [8.552397660947118e-16, -8.90398914061666e-16, -2.980596007487704e
-15, -4.777059403008738e-16, -1.6492322276190324e-15, 4.1452615651762445e-1
5, 3.7300246520205676e-15, 9.193685053315784e-16, 9.274578498787597e-15, 1.
828104212570456e-15 … 8.166076065848301e-8, 1.3762429824176198e-7, 1.0364
055331895934e-8, -1.1034073340598144e-7, -3.3825982494749514e-7, -1.7992445
705739276e-7, -5.8674853884516865e-8, 3.457218453203237e-7, 1.8254121274716
02e-7, -1.3875734299391357e-7]], [[2.1197102143875668e-13, -2.2036021278175
41e-13, 1.2646476855319824e-13, 8.602142679416823e-14, 2.908970705363114e-1
3, 1.2594623217188484e-13, -2.9369534818361214e-13, -7.380374293061008e-14,
1.2604252795278236e-13, 6.98411004663418e-15 … -6.931851346922082e-8, -3
.2474901240550226e-8, -4.3138419306593306e-8, -2.3592602479793284e-8, -1.05
663552457729e-8, -1.0639627943850269e-8, 6.016485462916882e-8, -2.668540743
6206117e-9, -6.983934204991137e-8, -2.028090872208354e-8], [8.5033154774766
35e-16, -8.852889696292707e-16, -2.9636279454724476e-15, -3.754179189589077
5e-16, -1.2960920433412533e-15, 3.25752533962168e-15, -7.969795949658837e-1
6, -1.9643760271205906e-16, -1.981798613055377e-15, 1.1885112144295883e-15
… 2.4874960221148326e-7, 1.0720393556749396e-7, 1.741413591097744e-7, 6.5
59712438032968e-8, 1.640227898726473e-8, 2.493111112918529e-8, -1.986001657
0375251e-7, 1.3533156426073232e-8, 2.5225066546808844e-7, 5.239308528158099
e-8], [-3.045070210097913e-15, 3.1702539064694722e-15, 1.0612373827654362e-
14, 1.0463997636023383e-15, 3.6125910668831605e-15, -9.080064439887226e-15,
1.4987803965041519e-15, 3.6941618934811344e-16, 3.726666105839993e-15, -5.
935006195322133e-15 … -2.0013819497033924e-7, -9.739689301024906e-8, -1.2
34452159536106e-7, -5.851628559007729e-8, -3.420069645183793e-8, -6.3197847
62333243e-8, 1.5743192954956912e-7, -1.6275873051407166e-8, -2.181663870082
2127e-7, -8.529168370640278e-8]] … [[5.51535463328252e-8, 2.5298357423514
227e-10, 2.645701424356799e-8, -1.4796560143579518e-8, -1.0841056580469145e
-7, -2.8439197666066205e-8, -1.2452886751938582e-7, 5.894535347097569e-8, 1
.1717246316326798e-7, 1.2904444838401166e-8 … -8.977788920421383e-15, -6.
378741894477836e-14, -6.628764306889425e-14, -5.2143906181074024e-14, -2.71
0207668315526e-13, -4.7608442199371664e-14, -3.010058318803638e-13, -3.2149
27219338173e-14, -1.7057826143056558e-13, -3.1837318604359804e-13], [-4.006
5538990987965e-8, 7.757166922682e-11, -1.932644341518057e-8, 1.213561806272
9246e-8, 9.100159141723237e-8, 2.3895285196194683e-8, 1.0295848520693135e-7
, -4.5855927854266903e-8, -9.737981312264309e-8, -9.75130042208869e-9 … 2
.73794507881753e-14, 2.1053241060733812e-13, 2.1732471056478844e-13, 1.7059
35403152266e-13, 9.05266448069153e-13, 1.5729491069844153e-13, 1.0061704270
448708e-12, 1.0731819742791523e-13, 5.682052986999642e-13, 1.05988410409345
32e-12], [8.300725850311214e-9, -7.812900762716138e-10, 4.317626772593719e-
9, -3.307217221700434e-9, -2.676297893558466e-8, -7.048546197929573e-9, -3.
0217671186657075e-8, 1.0689990455360105e-8, 2.9064486989921712e-8, 1.522537
2823725106e-9 … -2.77458141007138e-14, -1.8120382225343958e-13, -1.858012
5708668884e-13, -1.5023092252285896e-13, -7.622809175853718e-13, -1.3597476
812627765e-13, -8.538891230354988e-13, -9.390198394730395e-14, -4.781630523
362777e-13, -9.013495554464785e-13]], [[-7.847310180881833e-9, 5.0463085553
54986e-10, -3.98589406014806e-9, 1.7042261831035332e-9, 1.6040041865234114e
-8, 4.246863967066101e-9, 1.8128107444952276e-8, -7.291297735283094e-9, -1.
7282715330828767e-8, -1.5424535866965716e-9 … -1.1843877612961741e-14, -9
.673393826988868e-15, -7.334157376942064e-15, -1.3338722882176574e-14, 9.16
3919184723731e-15, -6.301252802813563e-15, -1.1789535606034063e-16, -5.7832
390709215535e-15, 5.4276245723495895e-15, -8.289116274474452e-15], [-9.8499
08950416627e-9, -2.4784729759712434e-9, -3.727764494076792e-9, 2.4789452949
28955e-9, 1.6547461808441204e-8, 4.3231056703559444e-9, 1.8616658390841894e
-8, -1.4084898918945651e-8, -1.6594845518847085e-8, -4.099657386330258e-9
… 3.9806864859458105e-14, 3.1753621820667065e-14, 2.3910731754973855e-14,
4.842572154225618e-14, -3.0477507140843334e-14, 2.0913981306467292e-14, 1.9
953133356645383e-15, 2.382421838664448e-14, -1.435533784518781e-14, 2.55533
47842113872e-14], [5.413721359086831e-9, 2.1724940181469723e-9, 1.716798841
7342573e-9, -9.807456695598002e-10, -9.625592113825881e-9, -2.5519218340482
865e-9, -9.509462806529436e-9, 8.847732075631004e-9, 8.18761915767055e-9, 3
.2527632136062447e-9 … -3.915161138877712e-14, -3.4406513843916743e-14, -
2.2664249234384516e-14, -3.65599107759377e-14, 2.3766845895757953e-14, -1.8
048402427138352e-14, -3.2194618625986255e-15, -1.7599524059118394e-14, 1.25
330016002009e-14, -3.6486657852125814e-14]], [[-1.3831053438822826e-8, -6.6
67322038270775e-10, -6.387481953961449e-9, 4.3723568739939724e-9, 2.7487280
48017563e-8, 7.1606582996407065e-9, 3.2108703111476776e-8, -1.6147513108330
06e-8, -3.0045977767303575e-8, -3.2571919933494404e-9 … -9.40733743966763
8e-15, -1.2465368488725297e-14, -4.808769660278581e-15, 1.2936723979245683e
-14, -1.0273168266446189e-15, -5.149318298839142e-16, 1.6293647206464396e-1
5, 1.0528946330326586e-14, 6.83664369523337e-15, -2.565508340006948e-14], [
6.531516660317306e-9, 1.955232578824657e-9, 2.3441351199320363e-9, -2.22833
20474027436e-9, -1.3901659374643311e-8, -3.6201202680679367e-9, -1.44604864
82166e-8, 1.0305920007395699e-8, 1.300100257859321e-8, 3.1890891427798386e-
9 … 3.2823734777347975e-14, 4.130538390859647e-14, 1.9095722562372605e-14
, -4.186739709914049e-14, 2.1681145068487015e-15, 5.358730174633708e-15, -5
.488340364032948e-15, -3.5933063699383065e-14, -2.1557297377508467e-14, 8.7
7373758296362e-14], [-9.555032793322404e-10, -1.3892975000496682e-9, 1.0922
370315386465e-10, 3.481071032511515e-10, 3.099788409401229e-9, 8.1920415939
65448e-10, 1.7995785363559177e-9, -3.448978877428886e-9, -1.239114013993622
8e-9, -1.7748338562240365e-9 … -2.5753550734273973e-14, -2.98823573023754
4e-14, -1.0881323819629762e-14, 3.8005120741339686e-14, -6.073682341178346e
-15, -2.8457027821781656e-15, 6.3963023418314784e-15, 3.2374202654479125e-1
4, 2.0578955631103133e-14, -7.122690811938235e-14]], [[-3.258322007191662e-
9, 2.5042988314488213e-10, -1.6717635746471654e-9, 1.009069454962688e-9, 6.
355385875114917e-9, 1.655781453776282e-9, 7.774030658228265e-9, -3.11695287
9015037e-9, -7.413219934826355e-9, -4.455435933001594e-10 … 5.03349352968
5319e-15, 8.300823337119941e-15, 1.259278295404757e-14, 6.760656740888077e-
15, -7.41401175247845e-15, 7.404195500398103e-15, 3.845835779225105e-15, 2.
714845436842629e-15, 5.419892826101074e-15, 7.53653015365344e-15], [4.31069
7941679785e-9, -8.220228644931229e-10, 2.4128074797241378e-9, -1.3585288186
916658e-9, -7.919915675795873e-9, -2.0552432000497336e-9, -1.02485623742462
65e-8, 3.065318376950429e-9, 9.955423855400764e-9, 9.82122929959969e-11 …
-1.783652814989498e-14, -2.873035162373235e-14, -4.1068690926460964e-14, -
2.4382595402197393e-14, 2.469871808661591e-14, -2.6033719922043402e-14, -1.
3881363689945104e-14, -8.654403682860375e-15, -1.881488290800784e-14, -2.58
35756400653708e-14], [-1.903216150241802e-9, 6.242453394121373e-10, -1.1723
617979316167e-9, 6.319615562435287e-10, 3.0619322689326388e-9, 7.8596589210
83793e-10, 4.356629633411863e-9, -7.281771412407089e-10, -4.33253050647912e
-9, 3.0979565029614556e-10 … 1.3982679250849675e-14, 2.181683338958378e-1
4, 3.4665585801879286e-14, 2.0457389676290317e-14, -2.2497636096858057e-14,
2.135416578741862e-14, 1.0671632728187625e-14, 7.109168742494543e-15, 1.64
44125669957137e-14, 2.0886834930818327e-14]], [[2.063407693446566e-10, -1.0
266028712447267e-10, 1.414419398794513e-10, -9.60106446008933e-11, -4.71037
743401947e-10, -1.2100852632992778e-10, -6.273114682907624e-10, 1.030480635
6528356e-10, 6.241608380617505e-10, -2.8944461671247033e-11 … -3.55394069
6458567e-15, -4.9948496578047645e-15, 1.3942790262524406e-15, -2.6923547421
297998e-15, -2.2938948561575944e-15, -3.3215318122261034e-15, -2.8657372968
532883e-15, 4.852301052112967e-17, -3.846135223051176e-16, -2.4128619826791
767e-15], [-2.915615467472206e-11, 3.539319851477426e-10, -1.59093730188729
18e-10, 1.4468752358909952e-10, 2.1419010335490528e-10, 4.6878801451958565e
-11, 4.980018166543765e-10, 3.9096188060815085e-10, -5.781665682679509e-10,
2.884124791911236e-10 … 1.265318521928865e-14, 1.703001672001214e-14, -5
.643397351588013e-15, 9.800572945282922e-15, 7.81357165674732e-15, 1.086997
3003130937e-14, 1.1113517639553915e-14, 1.6133753309404396e-15, 7.849312552
667725e-16, 8.588484248107566e-15], [-5.333954361684344e-11, -2.89393885359
0727e-10, 9.291924308092591e-11, -1.0036579038188222e-10, 4.914242094968298
e-11, 2.1521846844062638e-11, -1.380211213016478e-10, -4.3206946020554674e-
10, 2.168205073549167e-10, -2.8904692445863707e-10 … -1.0213295861475515e
-14, -1.3921041537632033e-14, 3.7099841830430945e-15, -8.74287293130287e-15
, -6.2883764956735465e-15, -1.0188279275039997e-14, -6.3311327390935376e-15
, 9.345855611133692e-16, -1.3014090651584569e-15, -6.001455380566052e-15]],
[[3.187057901298734e-11, 2.7784049321474786e-11, 3.9617704397931674e-12, -
3.643037344126362e-13, -1.4444894021019183e-11, -3.917952009007272e-12, -6.
706128974627692e-12, 4.366876286868699e-11, -7.715184513840081e-13, 7.78939
6192611014e-12 … 1.5912057831061998e-15, 1.1986708072190756e-15, -2.85078
80189902035e-15, 4.130949416557639e-17, 9.167082580192201e-16, -2.221330533
0203224e-15, 6.96854726169571e-15, 5.529518993951503e-15, -1.52913166846027
4e-15, 2.509771382373756e-15], [-9.949204930095428e-11, -9.761520079064891e
-11, -7.913380268025569e-12, -4.2422792762702234e-13, 5.138658761213154e-11
, 1.4079500867079288e-11, 3.27169974170371e-11, -1.5331395725452176e-10, -6
.6790068660453894e-12, -3.124507842813276e-11 … -5.256786852761264e-15, -
3.2810560335607304e-15, 9.654644501296788e-15, 4.712649478759212e-16, -3.53
6180795105845e-15, 7.896727822552986e-15, -2.3915180607351758e-14, -1.90234
2632185367e-14, 4.811951550921873e-15, -7.465412354418053e-15], [7.32944928
8912294e-11, 8.513945845980207e-11, 4.1576505524256745e-13, 3.7665819273019
885e-12, -3.739449778144473e-11, -1.0530763575684135e-11, -2.60927944995871
77e-11, 1.2969730261135162e-10, 4.021309785900992e-12, 3.101040145033783e-1
1 … 4.285957329842194e-15, 2.775255766755853e-15, -8.514814318283155e-15,
5.846121736328203e-16, 1.2169115155986543e-15, -6.504245309721925e-15, 1.9
369035609873702e-14, 1.568355125080646e-14, -3.701841380358503e-15, 7.43559
1573188728e-15]], [[-6.451956818619737e-12, -5.040950364237987e-13, -2.9017
26756225562e-12, 2.749931187252945e-12, 2.704855002249843e-12, 5.1713912943
40436e-13, 4.2343396710152786e-13, -1.9605480839679924e-12, -9.213173414071
606e-14, 4.529773472931291e-12 … -3.6333494504974964e-16, 7.0381612413991
07e-16, -4.1337572548832995e-16, 2.4262405138275977e-15, -3.430417538280753
7e-15, 8.780302000751896e-16, -2.3038261612462674e-15, -1.6610758525073056e
-15, 2.632277179064434e-16, 2.837665076405279e-15], [2.010052138142345e-11,
2.2811675495202767e-12, 8.743941177814185e-12, -8.515718498053142e-12, -7.
694064756413545e-12, -1.4079386050668685e-12, -2.0523410689912031e-13, 6.41
0261341077864e-12, -9.108668707912626e-13, -1.5230967510355724e-11 … 9.43
0373958351987e-16, -2.5053658135141985e-15, 1.628704792660604e-15, -7.83073
647267954e-15, 1.1691230307769293e-14, -2.745589495025749e-15, 7.5549508884
91016e-15, 6.2193937694349125e-15, -9.456213785333777e-16, -9.1983870086086
45e-15], [-1.5732239636044977e-11, -2.666918284485848e-12, -6.4739351019112
36e-12, 6.885926998597844e-12, 5.625163654807202e-12, 9.629923744193548e-13
, -1.2358655208847674e-13, -5.6064271128303794e-12, 1.1184438384874366e-12,
1.2952374484143767e-11 … -8.66618229827804e-16, 1.796034473075556e-15, -
1.1984660066123004e-15, 7.140201265467048e-15, -1.0045019730826691e-14, 2.5
65399456254601e-15, -6.420300329191185e-15, -5.120130263076452e-15, 7.71583
9162798855e-16, 8.480382497708802e-15]], [[6.535320246000965e-13, -5.609298
798096617e-13, 5.422285458105238e-13, -3.1785363448686955e-13, -3.042221045
8041287e-13, -5.750999739247001e-14, 2.816705844851628e-13, -4.354328569949
381e-13, -2.123168444379802e-13, -2.0447883467683809e-13 … -4.68725527533
9247e-16, -6.848928541611897e-16, 5.65447511610256e-16, 1.150806590211932e-
15, 1.0651674825977799e-16, 6.556894523772381e-16, -1.661535765159114e-16,
1.0764754426186549e-15, -2.4139744767627507e-16, 1.5490812921750338e-15], [
-2.2646468913081407e-12, 2.0256646120257007e-12, -1.915030377367744e-12, 3.
523227970776411e-13, 5.554160138039692e-13, 1.2357793312203274e-13, -1.3267
343333817147e-12, 5.53960973563552e-13, 1.2590198485991484e-12, 1.177487287
6200815e-12 … 1.6062626105360942e-15, 2.182827178877512e-15, -1.792765151
9745636e-15, -3.758939498708203e-15, -3.233443059374628e-16, -2.24955741348
35785e-15, 5.823568177597848e-16, -3.5348953710348592e-15, 9.05405315853721
e-16, -5.2294925585321334e-15], [1.8330299466327443e-12, -1.789720215392315
e-12, 1.6164663351249926e-12, -1.8776571604741736e-13, -2.7325350409261974e
-13, -5.987027229549397e-14, 1.3320738156571497e-12, -2.598875426723857e-13
, -1.3122760691518136e-12, -1.2268732878796368e-12 … -1.3278459311373455e
-15, -1.9905340326387966e-15, 1.5741814007164681e-15, 3.3014719727053445e-1
5, 1.6429003922311208e-16, 1.7783847215431755e-15, -4.946562328331962e-16,
3.2456946594335096e-15, -8.785328769324825e-16, 4.617075756863966e-15]], [[
-2.883938385363519e-13, -5.161878768529796e-15, -1.3556726855828818e-13, -1
.6712688434259562e-13, 3.108697992228e-14, 2.1846659824951694e-14, -1.66636
48796283563e-13, 4.093365969677104e-14, 1.6451338299251784e-13, -1.98953809
4008615e-13 … 9.486126036351531e-17, -3.620620055747176e-16, 2.3209602301
823506e-16, 3.012545189634977e-16, -1.688992230857175e-16, -2.3415050967304
144e-16, 3.136801118766208e-17, 5.275165341153587e-16, -1.25511594037549e-1
6, 2.5733412455562867e-16], [3.4708213565145687e-12, -3.3491792830308648e-1
2, 3.036845987548322e-12, 2.6656693632510335e-12, -4.628835095479685e-12, -
1.4785129797997628e-12, 2.3454494837718287e-12, -4.103733675895282e-12, -1.
688960394761347e-12, 3.049722066951961e-12 … -2.7092429071049565e-16, 1.2
258461700165453e-15, -7.762531004862413e-16, -9.955882679619536e-16, 5.8605
11536168085e-16, 7.437958217164689e-16, -7.650854069293489e-17, -1.75429013
22300003e-15, 4.1853684323491226e-16, -9.141011347438608e-16], [-3.58307091
064375e-12, 3.539586326791464e-12, -3.164334139065474e-12, -2.7321294060229
307e-12, 5.05787492257267e-12, 1.597709126357863e-12, -2.219226055533449e-1
2, 4.3302679941327675e-12, 1.5231506399262542e-12, -3.1068806586597592e-12
… 3.0085945818914664e-16, -1.078599298820714e-15, 7.338668856856621e-16,
9.1638401551051e-16, -4.860098076057416e-16, -6.820867215382207e-16, 9.3412
74306792213e-17, 1.5255789929974405e-15, -3.723824676346482e-16, 7.44943015
540426e-16]], [[9.386062205023244e-15, -4.8842335606477305e-14, 2.478364049
4181075e-14, -9.134217824700765e-14, -1.2532753935369067e-13, -2.9056000682
12301e-14, -1.0607297407315322e-13, -2.8104874292852464e-14, 1.126342933976
4584e-13, -6.289312850636147e-14 … 1.5351457380984269e-16, -1.52107167159
68303e-17, 1.4707132667510832e-16, 1.5261911405250162e-16, 5.14983556302751
e-17, -1.1459053746662135e-16, 9.827163035211398e-17, 1.0283040918437123e-1
6, -5.232313552412591e-17, -1.36483141000052e-16], [-1.8692466230777779e-13
, 9.15469059594766e-13, -4.60594660530642e-13, 4.1746179245593343e-13, 1.49
44934269377257e-12, 3.785606323061935e-13, 3.830764793541696e-13, 9.3971979
33933457e-13, -5.548437209094282e-13, 4.028057421035095e-14 … -5.43968120
8882951e-16, -9.218645762417292e-17, -4.451240145265388e-16, -5.62751346637
29045e-16, -2.5356481198161243e-16, 3.8724013312396145e-16, -3.516859193305
2875e-16, -3.611009240577747e-16, 1.78856862282501e-16, 4.482995952563703e-
16], [3.9012459418257586e-13, -8.343492067859798e-13, 5.167106523695732e-13
, -3.6629315161340336e-13, -1.517012437366762e-12, -3.811557765514476e-13,
-2.9997585540220074e-13, -9.40392775349287e-13, 4.749382457606865e-13, 8.17
1012041420787e-14 … 3.444608842721769e-16, -1.0077826041643763e-16, 5.412
744014614547e-16, 4.0915815269803087e-16, 1.545957709531198e-16, -3.4526222
401182245e-16, 2.85007359937849e-16, 3.877310898354694e-16, -9.449776717427
846e-17, -4.696434373674202e-16]]], nothing, true, OrdinaryDiffEqRosenbrock
.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Float64}
, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTableau{F
loat64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction
{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete
_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#2
25".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothin
g, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, SciMLBase
.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecializ
e, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothi
ng, Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof
(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Float64,
SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float64}, Vector
{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve.DefaultLi
nearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Float64, M
atrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, Matrix{F
loat64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vect
or{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}
, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Float64, Flo
at64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{Float64, Ma
trix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, Tuple{Lin
earAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefValue{Int32
}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Base.R
efValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{F
loat64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Matri
x{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearAlgebra.D
iagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{
Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciMLL
ogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silen
t, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLL
ogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tuple{Nothi
ng, Nothing}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoAr
gDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunc
tion{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fe
kete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandB
ox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, No
thing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vecto
r{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivati
veConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoAr
gDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunc
tion{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fe
kete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandB
ox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, No
thing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vecto
r{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivati
veConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.A
utoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), t
rue, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryD
iffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!),
typeof(OrdinaryDiffEqCore.trivial_limiter!)}([-0.4070263380339031, 0.346375
8772825366, 0.8451942450013866, 0.0775293475242741, -0.2628662719936408, 0.
9617122871839714, 0.7100577833338019, 0.12129480556093584, 0.69361770051738
34, 0.23482677445553068 … 1.368813726986877e-17, 2.682280828342363e-17, -
2.0017019873396992e-17, 9.958428173144642e-18, 1.2050515717680968e-17, 7.56
6959212233535e-19, 2.3335861812346315e-18, -7.502037621165297e-18, -4.94774
6613447729e-18, 1.0568347471689677e-17], [-0.4070263380339401, 0.3463758772
8254415, 0.8451942450013658, 0.07752934752430495, -0.2628662719935718, 0.96
17122871839879, 0.7100577833337978, 0.12129480556104519, 0.6936177005173684
, 0.2348267744554594 … -9.889037906229451e-18, 2.622047247919259e-18, -7.
695124067665101e-18, -8.410583286614547e-18, -2.1939331562369414e-18, 7.425
433525461884e-18, -5.171447457153027e-18, -4.534073097546996e-18, 2.6749451
214653878e-18, 6.515653074300628e-18], [[9.386062205023244e-15, -4.88423356
06477305e-14, 2.4783640494181075e-14, -9.134217824700765e-14, -1.2532753935
369067e-13, -2.905600068212301e-14, -1.0607297407315322e-13, -2.81048742928
52464e-14, 1.1263429339764584e-13, -6.289312850636147e-14 … 1.53514573809
84269e-16, -1.5210716715968303e-17, 1.4707132667510832e-16, 1.5261911405250
162e-16, 5.14983556302751e-17, -1.1459053746662135e-16, 9.827163035211398e-
17, 1.0283040918437123e-16, -5.232313552412591e-17, -1.36483141000052e-16],
[-1.8692466230777779e-13, 9.15469059594766e-13, -4.60594660530642e-13, 4.1
746179245593343e-13, 1.4944934269377257e-12, 3.785606323061935e-13, 3.83076
4793541696e-13, 9.397197933933457e-13, -5.548437209094282e-13, 4.0280574210
35095e-14 … -5.439681208882951e-16, -9.218645762417292e-17, -4.4512401452
65388e-16, -5.6275134663729045e-16, -2.5356481198161243e-16, 3.872401331239
6145e-16, -3.5168591933052875e-16, -3.611009240577747e-16, 1.78856862282501
e-16, 4.482995952563703e-16], [3.9012459418257586e-13, -8.343492067859798e-
13, 5.167106523695732e-13, -3.6629315161340336e-13, -1.517012437366762e-12,
-3.811557765514476e-13, -2.9997585540220074e-13, -9.40392775349287e-13, 4.
749382457606865e-13, 8.171012041420787e-14 … 3.444608842721769e-16, -1.00
77826041643763e-16, 5.412744014614547e-16, 4.0915815269803087e-16, 1.545957
709531198e-16, -3.4526222401182245e-16, 2.85007359937849e-16, 3.87731089835
4694e-16, -9.449776717427846e-17, -4.696434373674202e-16]], [2.123669496577
6833e-14, 3.381368731235518e-14, -3.6303505865752095e-15, 6.531133331788356
e-16, 1.778673015357824e-14, 4.809022466987759e-15, 7.661013900297595e-16,
6.639508310556239e-15, -1.9053126062987657e-15, 2.184399413408555e-14 … 7
.598888605452412e-18, 1.2757594009501252e-17, -8.826207393275526e-18, 4.439
125856075106e-18, 3.0360799657211395e-18, 4.022700897981494e-18, 8.18635266
8146686e-19, -2.3153554916759226e-18, -4.62164637360465e-18, 3.610753366622
04e-18], [1.2906031895338056e-15, 8.232145277204604e-16, 2.348945481891979e
-16, -1.3324294022253296e-16, -1.2684441455275718e-16, 8.010102900417155e-1
8, -3.3564836582100555e-16, 8.015149855802235e-16, 2.2936715845989397e-16,
1.8333607647697663e-16 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
], [1.2906031895338056e-15, 8.232145277204604e-16, 2.348945481891979e-16, -
1.3324294022253296e-16, -1.2684441455275718e-16, 8.010102900417155e-18, -3.
3564836582100555e-16, 8.015149855802235e-16, 2.2936715845989397e-16, 1.8333
607647697663e-16 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.
0 0.0 … 0.0 0.0; -0.06749874783088496 0.0 … 0.0 0.0; … ; 0.1474075706760226
1 -0.014881671786251677 … -0.1339375454791798 0.0; 0.18026276833516747 -0.0
15531965291586068 … -0.26068378372815487 -0.04524653157147466], [44.4452689
3323062, -88.89053786646124, -70.97876402700659, 378.45082256176215, 487.74
71671050459, 0.0, 0.0, 0.0], [[-4.321600954866568e-16, 1.0952512439816114e-
14, -4.696656028334887e-15, -1.694535555257581e-14, 3.568023918253452e-17,
1.2603761069779317e-15, -1.0694302860637115e-14, -4.5451209441398014e-15, 1
.1702580489259402e-14, 1.8357290830421333e-15 … 9.576793472998238e-18, -1
.9975583814549697e-18, 8.222036548735515e-18, 8.566705503227287e-18, 2.5061
775894628448e-18, -7.260773375126616e-18, 5.483691890384868e-18, 5.15856196
4009476e-18, -2.6749451214665453e-18, -7.140141940761193e-18], [-2.94261095
35535553e-16, -2.2177651126087617e-14, 8.947092805612094e-15, 5.36682787249
31025e-14, 1.5061294423686367e-14, 2.1091847791601113e-17, 2.94937813646112
4e-14, 3.1525777463924475e-14, -3.550576083783233e-14, -1.1440687785304999e
-14 … -2.0168381353947272e-17, 3.370627896437477e-18, -1.6717286976450556
e-17, -1.6821166573188644e-17, -4.54398852900785e-18, 1.44751979672401e-17,
-1.1279628213975061e-17, -1.0941612794470262e-17, 4.725401376513223e-18, 1
.4280283881544312e-17], [2.941541257377514e-14, -8.898360967119148e-15, 1.7
81250326426387e-14, 4.008881112366321e-14, -5.617460571583075e-15, -4.65178
4161563113e-15, 3.275255267423148e-14, -9.67101346478391e-15, -3.1797639622
709055e-14, 2.4902605715266735e-14 … -9.26708037148287e-18, 2.14342906801
32e-18, -7.022444391625265e-18, -7.849569295090402e-18, -2.5499375798065263
e-18, 7.728478561727909e-18, -4.973510862607005e-18, -3.9055187708038115e-1
8, 1.777821681330829e-18, 5.661231974854308e-18], [3.580552840294026e-13, 2
.1269262446446e-13, 8.520032638229613e-14, 5.3654809657766936e-14, -3.63560
00535223226e-14, -1.4493558520851332e-14, 1.8187360267281872e-13, -3.142133
325623067e-13, -1.315971639642658e-13, 4.462806564675273e-13 … 3.75313559
7719469e-17, -1.1060351077149932e-17, 2.5851967395669513e-17, 2.48072511200
95602e-17, 8.221405395191752e-19, -1.9724000083381397e-17, 1.67826706929952
08e-17, 1.590271971504177e-17, -1.0320198079277485e-17, -2.1352032232863636
e-17], [-2.962435240230538e-13, 5.6704942944011563e-14, -1.6590285835137832
e-13, -3.089459277215168e-13, 9.063465294709664e-14, 4.9794717683039896e-14
, -2.4285814428194355e-13, 1.0820311270274979e-13, 2.2973259698213555e-13,
-2.5382818972601927e-13 … 3.9954174664279714e-18, -1.1412635025875723e-17
, -1.8169897789621774e-17, -1.466118242056976e-17, -1.661882364372066e-17,
9.379511242456788e-18, -1.0482233645738667e-17, -1.808654526787702e-17, 1.3
290107444023759e-18, 1.9888082929007654e-17], [7.697159060983839e-13, 2.430
818178855471e-13, 2.711897203775347e-13, 3.9594149981458374e-13, -1.0670680
9414033e-13, -6.143185963215169e-14, 5.002541799766833e-13, -5.104653879736
255e-13, -4.2336491185529676e-13, 8.507083549204702e-13 … 3.1209525433940
95e-17, 2.121427447750205e-19, 3.2915181059428356e-17, 3.077179732951689e-1
7, 1.0381207415489575e-17, -1.976899892758853e-17, 2.1354300296199416e-17,
2.6088175496574093e-17, -1.1887189557459983e-17, -3.156312547451784e-17], [
-3.4004768913594583e-13, -2.1178567645367307e-13, -7.709699737809603e-14, -
2.0680621516525294e-13, -9.308135505293326e-14, -8.770188320915065e-15, -2.
3149711981380125e-13, 1.0650725289302615e-13, 2.1831882249267685e-13, -3.79
4807869993647e-13 … 7.27277898306029e-18, 1.0855477853096067e-17, -8.2772
920546871e-18, 4.229546264897992e-18, 2.2741792006842815e-18, 3.49447806069
5453e-18, 9.24904709739629e-19, -1.9663207802035207e-18, -4.543124078631237
e-18, 3.1746504282771556e-18], [2.1236694965776833e-14, 3.381368731235518e-
14, -3.6303505865752095e-15, 6.531133331788356e-16, 1.778673015357824e-14,
4.809022466987759e-15, 7.661013900297595e-16, 6.639508310556239e-15, -1.905
3126062987657e-15, 2.184399413408555e-14 … 7.598888605452412e-18, 1.27575
94009501252e-17, -8.826207393275526e-18, 4.439125856075106e-18, 3.036079965
7211395e-18, 4.022700897981494e-18, 8.186352668146686e-19, -2.3153554916759
226e-18, -4.62164637360465e-18, 3.61075336662204e-18]], [4.777374552405044e
-17, 2.1955637710088361e-16, -8.229772860545203e-17, -1.5454229639719669e-1
6, -1.2242635595824158e-16, -1.172871630715824e-17, -4.769324775756736e-16,
1.8883883017134134e-16, 4.417775815588708e-16, -1.611704990389739e-16 …
-1.0493082634603865e-28, 6.645167050355498e-28, 4.646413842911092e-28, 1.27
51443494831893e-27, 9.311424465365188e-28, 1.0325988952628828e-28, 1.004122
0951051732e-29, 4.344158397438959e-28, 6.132900500027604e-28, 2.63590475908
61465e-29], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1
.295370655741827e-17 0.0 … 0.0 0.0; 0.0 -1.295370655741827e-17 … 0.0 0.0; …
; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-0.022499582610295006 0.0 … 0.0
0.0; 0.0 -0.022499582610295006 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 …
0.0 0.0], [-2.1236694965776833e-14, -3.381368731235518e-14, 3.6303505865752
095e-15, -6.531133331788356e-16, -1.778673015357824e-14, -4.809022466987759
e-15, -7.661013900297595e-16, -6.639508310556239e-15, 1.9053126062987657e-1
5, -2.184399413408555e-14 … -7.598888605452412e-18, -1.2757594009501252e-
17, 8.826207393275526e-18, -4.439125856075106e-18, -3.0360799657211395e-18,
-4.022700897981494e-18, -8.186352668146686e-19, 2.3153554916759226e-18, 4.
62164637360465e-18, -3.61075336662204e-18], [1.5093317297422589e-6, 2.51145
96809772756e-6, -1.9674625565356025e-7, 6.0612115547424e-8, 1.4084413011916
915e-6, 2.4514412732210834e-7, 4.47997370320566e-8, 5.92128696006411e-7, -1
.1249956856950135e-7, 1.7689925895652181e-6 … 7.598888605452412e-10, 1.27
57594009501253e-9, -8.826207393275526e-10, 4.439125856075106e-10, 3.0360799
657211394e-10, 4.0227008979814936e-10, 8.186352668146685e-11, -2.3153554916
759226e-10, -4.6216463736046504e-10, 3.61075336662204e-10], [7.107187498688
301e7, 7.427346381296942e7, 5.4194836273145854e7, 9.280489689655007e7, 7.91
849479376301e7, 5.097587482797932e7, 5.84775561238917e7, 8.918261237281352e
7, 5.904520245002864e7, 8.098301888870083e7 … 1.0e8, 1.0e8, 1.0e8, 1.0e8,
1.0e8, 1.0e8, 1.0e8, 1.0e8, 1.0e8, 1.0e8], OrdinaryDiffEqRosenbrock.RodasT
ableau{Float64, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0.0; … ; -7.5028
46399306121 2.561846144803919 … 0.0 0.0; -7.502846399306121 2.5618461448039
19 … 1.0 0.0], [0.0 0.0 … 0.0 0.0; -14.155112264123755 0.0 … 0.0 0.0; … ; 3
0.91273214028599 -3.1208243349937974 … -28.087943162872662 0.0; 37.80277123
390563 -3.2571969029072276 … -54.66780262877968 -9.48861652309627], 0.21193
756319429014, [0.0, 0.6358126895828704, 0.4095798393397535, 0.9769306725060
716, 0.4288403609558664, 1.0, 1.0, 1.0], [0.21193756319429014, -0.423875126
38858027, -0.3384627126235924, 1.8046452872882734, 2.325825639765069, 0.0,
0.0, 0.0], [25.948786856663858 -2.5579724845846235 … 0.4272876194431874 -0.
17202221070155493; -9.91568850695171 -0.9689944594115154 … -6.7890403034198
74 -6.710236069923372; 11.419903575922262 2.8879645146136994 … -0.155826842
82751913 4.883087185713722]), SciMLBase.TimeGradientWrapper{true, SciMLBase
.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox
#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##We
aveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Not
hing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters
}(SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##W
eaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Ma
in.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBS
ERVED), Nothing, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fe
kete_rhs!, [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.
0 0.0 … 0.0 0.0], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac
!, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing,
nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [
-0.4070263380339401, 0.34637587728254415, 0.8451942450013658, 0.07752934752
430495, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.1212
9480556104519, 0.6936177005173684, 0.2348267744554594 … -9.88903790622945
1e-18, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-1
8, -2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18,
-4.534073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], Sci
MLBase.NullParameters()), SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".f
ekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSand
Box#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, N
othing, Nothing, Nothing}, Float64, SciMLBase.NullParameters}(SciMLBase.ODE
Function{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225
".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveS
andBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing
, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!, [1.0
0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0
], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLB
ase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), 0.0, SciMLBase.N
ullParameters()), [3.6213564458799175e-16, 3.6221725152666496e-16, 2.067002
1884581203e-18, -2.37468430715712e-16, -1.2552987882050396e-17, 2.715232501
8735023e-17, -5.28398222109059e-16, 7.803452132384372e-16, 4.16368617645378
8e-16, -1.7225778132583879e-16 … -2.889696103437719e-28, -4.1654320985998
24e-28, -8.767254885508518e-28, -6.7467328919027035e-28, -5.269344327843477
e-28, -6.306110935506014e-28, -7.02480636099311e-28, -4.4373425918681914e-2
9, -8.87271303147333e-28, -8.560866454878149e-28], LinearSolve.LinearCache{
Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters
, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{Line
arAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRComp
actWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64
}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{F
loat64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearA
lgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgeb
ra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matr
ix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32
}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Ma
trix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing,
Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPrecond
itioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Di
agonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciM
LLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sil
ent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLo
gging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.
Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciM
LLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint
{Missing}}([-0.022499582610295006 0.0 … 0.0 0.0; 0.0 -0.022499582610295006
… 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [3.6213564458799175e-
16, 3.6221725152666496e-16, 2.0670021884581203e-18, -2.37468430715712e-16,
-1.2552987882050396e-17, 2.7152325018735023e-17, -5.28398222109059e-16, 7.8
03452132384372e-16, 4.163686176453788e-16, -1.7225778132583879e-16 … -2.8
89696103437719e-28, -4.165432098599824e-28, -8.767254885508518e-28, -6.7467
328919027035e-28, -5.269344327843477e-28, -6.306110935506014e-28, -7.024806
36099311e-28, -4.4373425918681914e-29, -8.87271303147333e-28, -8.5608664548
78149e-28], [-2.1236694965776833e-14, -3.381368731235518e-14, 3.63035058657
52095e-15, -6.531133331788356e-16, -1.778673015357824e-14, -4.8090224669877
59e-15, -7.661013900297595e-16, -6.639508310556239e-15, 1.9053126062987657e
-15, -2.184399413408555e-14 … -7.598888605452412e-18, -1.2757594009501252
e-17, 8.826207393275526e-18, -4.439125856075106e-18, -3.0360799657211395e-1
8, -4.022700897981494e-18, -8.186352668146686e-19, 2.3153554916759226e-18,
4.62164637360465e-18, -3.61075336662204e-18], SciMLBase.NullParameters(), L
inearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmChoice.LUFactori
zation, true, false), LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{
Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64
, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vect
or{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Fl
oat64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{F
loat64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}},
Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefV
alue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}
, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Matrix{Float64}, Vector{Float64}}(LinearAlgebra.LU{Float64, Matrix{Flo
at64}, Vector{Int64}}([-4.582883262809606 0.06974750541719536 … 0.0 0.0; -0
.015219132021799656 -5.19852205414331 … 0.0 0.0; … ; -0.0 -0.0 … -2.5088147
139218444 1.0240633395676112e-15; -0.0 -0.0 … -4.342063853026781e-16 -2.201
952878147276], [61, 62, 63, 64, 65, 66, 67, 68, 69, 70 … 151, 152, 153, 1
54, 155, 156, 157, 158, 159, 160], 0), LinearAlgebra.QRCompactWY{Float64, M
atrix{Float64}, Matrix{Float64}}(Matrix{Float64}(undef, 0, 0), Matrix{Float
64}(undef, 0, 0)), nothing, nothing, nothing, nothing, nothing, nothing, (L
inearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(un
def, 0, 0), Int64[], 0), Int64[]), (LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), not
hing, nothing, nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}
, Vector{Float64}}(Matrix{Float64}(undef, 0, 0), Float64[], Matrix{Float64}
(undef, 0, 0)), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}(Matrix{Flo
at64}(undef, 0, 0), 'U', 0), LinearAlgebra.Cholesky{Float64, Matrix{Float64
}}([0.7155106697363188;;], 'U', 0), (LinearAlgebra.LU{Float64, Matrix{Float
64}, Vector{Int32}}(Matrix{Float64}(undef, 0, 0), Int32[], 0), Base.RefValu
e{Int32}(387486256)), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{In
t64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Base.RefValue{Int64}(14026
1301038640)), LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Floa
t64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Float64[], Int64[]), not
hing, nothing, nothing, nothing, nothing, [-0.022499582610295006 0.0 … 0.0
0.0; 0.0 -0.022499582610295006 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 …
0.0 0.0], [6.94218969599094e-310, 0.0, 6.942161289874e-310, 0.0, 6.94266297
327375e-310, 5.0e-324, 6.94266297327375e-310, 5.0e-324, 6.9421984342984e-31
0, 0.0 … 6.94215680299034e-310, 6.9421568035437e-310, 6.94215680602667e-3
10, 6.9421568061808e-310, 6.94266725940904e-310, 6.9426572602496e-310, 6.94
26572602322e-310, 6.9426572602148e-310, 0.0, 0.0], true, true, false), fals
e, true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vect
or{Float64}}}([7.107187498688301e7 0.0 … 0.0 0.0; 0.0 7.427346381296942e7 …
0.0 0.0; … ; 0.0 0.0 … 1.0e8 0.0; 0.0 0.0 … 0.0 1.0e8]), [7.10718749868830
1e7 0.0 … 0.0 0.0; 0.0 7.427346381296942e7 … 0.0 0.0; … ; 0.0 0.0 … 1.0e8 0
.0; 0.0 0.0 … 0.0 1.0e8], 1.4901161193847656e-8, 1.4901161193847656e-8, 160
, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, Sci
MLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, Sci
MLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging
.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}(Sci
MLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogg
ing.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Si
lent(), SciMLLogging.Silent(), SciMLLogging.WarnLevel(), SciMLLogging.WarnL
evel(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent()
, SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent()), Lin
earSolve.OperatorAssumptions{Bool}(true, LinearSolve.OperatorCondition.IllC
onditioned), LinearSolve.LinearSolveAdjoint{Missing}(missing)), (nothing, n
othing), (DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativ
ePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true,
SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!)
, Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".fe
kete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Not
hing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}
, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}},
Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".feket
e_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#
225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothi
ng, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{F
loat64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeCo
nfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(4.777374552405044e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(2.1955637710088361e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(-8.229772860545203e-17,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.5454229639719669e-16,0.0),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.22426355958
24158e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(-1.172871630715824e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(-4.769324775756736e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(1.8883883017134134e-16,0.0), Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.417775815588708e-16,0.0),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.61170499038
9739e-16,0.0) … Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(-1.0493082634603865e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(6.645167050355498e-28,0.0), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(4.646413842911092e-28,0.0), Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.2751443494831893e-27,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.3114244653
65188e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(1.0325988952628828e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(1.0041220951051732e-29,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(4.344158397438959e-28,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.132900500027604e-28,0.0), D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.6359047590861
465e-29,0.0)]), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoA
rgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".f
ekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSand
Box#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, N
othing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vect
or{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivat
iveConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase
.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox
#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##We
aveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Not
hing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters
}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.D
erivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}(4.777374552405044e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(2.1955637710088361e-16,0.0), Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.229772860545203e-17,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.5454229639719669
e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.
2242635595824158e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(-1.172871630715824e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(-4.769324775756736e-16,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.8883883017134134e-16,0.0), Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.417775815588708
e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.
611704990389739e-16,0.0) … Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(-1.0493082634603865e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(6.645167050355498e-28,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.646413842911092e-28,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.27514434948318
93e-27,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9
.311424465365188e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(1.0325988952628828e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(1.0041220951051732e-29,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.344158397438959e-28,0.0), Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.132900500027604e
-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.63
59047590861465e-29,0.0)]), ())), 1.0e-8, OrdinaryDiffEqRosenbrock.Rodas5P{0
, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:fo
rward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeo
f(OrdinaryDiffEqCore.trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFAULT
_PRECS, OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_lim
iter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}())), OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore
.trivial_limiter!, 3), Bool[1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 0, 0, 0, 0, 0,
0, 0, 0, 0, 0], false), true, 0, SciMLBase.DEStats(86366, 0, 9596, 76768,
9596, 0, 0, 0, 0, 0, 9596, 0, 0.0), nothing, SciMLBase.ReturnCode.Success,
nothing, nothing, nothing)
SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothin
g, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, SciMLBase.ODE
Problem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullParam
eters, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.va
r"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, type
of(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAUL
T_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Base.Pairs{Symbol, Union{
}, Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}, OrdinaryDiffEqRo
senbrock.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAU
LT_PRECS), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivia
l_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, OrdinaryDiffEqCo
re.InterpolationData{SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize,
typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing,
Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sc
iMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Vect
or{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, Or
dinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Fl
oat64, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRos
enbrock.RodasTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true,
SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##We
aveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Mai
n.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSE
RVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.Null
Parameters}, SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, S
ciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!),
Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".feke
te_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothi
ng, Nothing}, Float64, SciMLBase.NullParameters}, LinearSolve.LinearCache{M
atrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters,
LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{Linea
rAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompa
ctWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}
, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Fl
oat64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAl
gebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebr
a.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matri
x{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}
}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Mat
rix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, N
othing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPrecondi
tioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Dia
gonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciML
Logging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sile
nt, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{
Missing}}, Tuple{Nothing, Nothing}, Tuple{DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof
(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_
OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.
NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64
, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof
(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_
OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.
NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64
, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbroc
k.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PREC
S), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limit
er!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCo
re.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVect
or}, SciMLBase.DEStats, Nothing, Nothing, Nothing, Nothing}([[-0.2650941332
839412, 0.2759922279796341, 0.9238795325112867, -0.10646921403545888, -0.36
7574367807928, 0.9238795325112867, 0.37156334731940005, 0.09158213982829398
, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0], [-0.2650941332841742, 0.2759922279798762, 0.9238795325
111475, -0.10646921403555346, -0.3675743678082478, 0.9238795325111486, 0.37
156334731972307, 0.09158213982837514, 0.9238795325111487, 0.494556432801738
4 … -2.9381980376366813e-9, 4.86158636660428e-9, -1.2869567280894642e-9,
-3.2198125918363613e-9, -6.800682075927034e-10, -2.0613020551547345e-9, 1.3
95353671803122e-9, -5.950468450941714e-9, -3.1091445411164066e-9, -1.179492
0129632018e-9], [-0.26509413328457315, 0.275992227980291, 0.923879532510909
2, -0.10646921403571546, -0.3675743678087956, 0.9238795325109119, 0.3715633
4732027646, 0.09158213982851418, 0.9238795325109125, 0.4945564328017254 …
3.773980583547631e-9, 2.9180823857587613e-9, 6.262879513645702e-9, 3.90755
6772321569e-10, -9.50897966840413e-9, 2.9618965045870536e-9, 5.985906962402
134e-9, -9.907983177907806e-9, 4.857183359386243e-9, -1.0377246094378827e-9
], [-0.2650941332851672, 0.2759922279809085, 0.9238795325105542, -0.1064692
140359567, -0.3675743678096114, 0.9238795325105595, 0.3715633473211003, 0.0
915821398287212, 0.9238795325105607, 0.49455643280170614 … 2.515786108395
88e-11, 3.110473938978998e-9, -2.7489828242557556e-10, 6.738250344988411e-9
, 5.447683730400059e-9, 1.2408042216050644e-9, 4.738472372329455e-9, -3.816
383768998203e-9, 5.243285297956977e-9, -1.0814401231430751e-8], [-0.2650941
332860057, 0.2759922279817802, 0.9238795325100533, -0.10646921403629718, -0
.3675743678107627, 0.9238795325100623, 0.37156334732226315, 0.0915821398290
134, 0.9238795325100639, 0.4945564328016791 … -1.4930375118523534e-9, -1.
0677206569701569e-8, 1.2123400367883947e-9, -9.630793742110146e-10, -4.9646
15506365783e-10, -4.371563998672631e-9, -1.4449718034149703e-9, -1.57078559
05313584e-9, 1.6860645000515239e-9, 3.766706411702783e-9], [-0.265094133287
1582, 0.2759922279829783, 0.9238795325093646, -0.10646921403676515, -0.3675
743678123452, 0.9238795325093787, 0.37156334732386154, 0.09158213982941507,
0.9238795325093813, 0.4945564328016418 … -2.829457295085245e-9, 2.306789
14896376e-9, 4.019045677623573e-9, -3.0870113868925387e-9, -9.4023627166643
51e-10, 5.341789967056231e-10, -2.8827792190756617e-9, -9.360006859059129e-
9, -2.5753422404871796e-9, 3.264240878693443e-9], [-0.2650941332886537, 0.2
75992227984533, 0.923879532508471, -0.10646921403737239, -0.367574367814398
6, 0.9238795325084919, 0.3715633473259356, 0.09158213982993625, 0.923879532
5084955, 0.4945564328015934 … 1.3163880292736783e-9, -7.520964305631057e-
9, 9.434997922878726e-10, -1.916103204104861e-9, 1.646175760775223e-9, -2.2
97769321134328e-9, -4.630660131508884e-9, -5.46221286212423e-9, -1.92693497
78233163e-9, -5.1301181570586886e-9], [-0.2650941332905436, 0.2759922279864
977, 0.9238795325073419, -0.10646921403813973, -0.3675743678169936, 0.92387
9532507371, 0.3715633473285565, 0.09158213983059485, 0.9238795325073761, 0.
4945564328015323 … -1.8698349995330668e-9, -2.7464017247324886e-9, -8.827
596628252208e-10, 1.8128003092538084e-9, 7.164037967350772e-9, 3.1009199130
20742e-9, 8.036908245127148e-10, -5.923162444730369e-9, -4.0238435363288964
e-9, 2.764308117529542e-9], [-0.26509413329288956, 0.2759922279889366, 0.92
38795325059401, -0.10646921403909228, -0.36757436782021485, 0.9238795325059
795, 0.37156334733181, 0.09158213983141243, 0.9238795325059865, 0.494556432
8014564 … 3.950627054635561e-9, 1.771468244135932e-9, 2.101010074922371e-
9, 1.5672871413690205e-9, 8.320401732162137e-10, 5.104570071681936e-10, -3.
450993958468019e-9, 2.128621167396301e-10, 3.873601566936303e-9, 9.24230148
6958966e-10], [-0.26509413329585574, 0.27599222799202006, 0.923879532504168
, -0.10646921404029665, -0.3675743678242877, 0.9238795325042204, 0.37156334
733592344, 0.0915821398324461, 0.9238795325042298, 0.49455643280136047 …
-2.3171051265390624e-9, 8.027530206632113e-10, -4.287360150284864e-9, 1.325
69536898589e-9, 3.3766392808190897e-9, 4.965416267302419e-9, 5.352492006491
146e-10, -1.4576853573447413e-10, -1.0253611519609038e-9, 5.493174282941085
e-9] … [-0.40702629538697305, 0.3463758774581013, 0.845194265467228, 0.07
75293349555316, -0.26286635564642724, 0.9617122653322662, 0.710057684931900
6, 0.12129485192767821, 0.6936177931433077, 0.23482678332007131 … 6.45195
633876406e-16, 5.07580972346805e-16, 4.1269969664277186e-16, 8.003976549593
222e-16, -5.098071221153372e-16, 4.1493581733728216e-16, 4.991997837855795e
-17, 2.812127590431388e-16, -3.2792098322469923e-16, 4.986480541842396e-16]
, [-0.4070263264532298, 0.3463758773698235, 0.8451942505426039, 0.077529344
06298198, -0.26286629470298095, 0.9617122812558283, 0.71005775657401, 0.121
29481821517442, 0.693617725698552, 0.2348267768556548 … 5.460817414712736
e-16, 7.944599995175238e-16, 2.994717110861975e-16, -7.71874540637152e-16,
9.238612467296446e-17, -1.6084641081674373e-17, -6.843868519741059e-17, -5.
824772084963076e-16, -4.149216585893152e-16, 1.4944995287594123e-15], [-0.4
070263376170111, 0.3463758772665546, 0.845194245208702, 0.07752934739116238
, -0.262866272834908, 0.9617122869647575, 0.7100577823210024, 0.12129480600
474604, 0.6936177014765779, 0.23482677452588221 … -3.001685519005525e-16,
-4.927879823606554e-16, -7.672731763005923e-16, -3.618510822795282e-16, 4.
4407681458549273e-16, -4.3837837487325375e-16, -2.096697281370121e-16, -1.6
2820072767635e-16, -3.2578697248948327e-16, -4.41406222100141e-16], [-0.407
02633814491695, 0.3463758772875023, 0.8451942449458898, 0.07752934755832482
, -0.26286627176995647, 0.9617122872423663, 0.7100577836014212, 0.121294805
44675361, 0.6936177002633882, 0.2348267744343191 … 2.047744004585689e-16,
3.087767656201961e-16, -6.629439363779967e-17, 1.3815133735597564e-16, 1.4
459832646234013e-16, 1.8232152689521258e-16, 1.7402127852320578e-16, -2.575
1693857519957e-17, 2.3280192043677322e-17, 1.4033036960087473e-16], [-0.407
02633803512056, 0.3463758772808107, 0.8451942450015076, 0.07752934752441541
, -0.2628662719946926, 0.9617122871836725, 0.7100577833323328, 0.1212948055
5908226, 0.6936177005192113, 0.23482677445571434 … -1.0582134777386639e-1
6, -8.913087083349813e-17, 1.6810697580463989e-16, -5.443965972723508e-18,
-5.616852684998393e-17, 1.2399789163774917e-16, -4.184150768197455e-16, -3.
282372768911615e-16, 9.995597575218945e-17, -1.612845826147695e-16], [-0.40
702633803316884, 0.3463758772822533, 0.8451942450018565, 0.0775293475243368
, -0.26286627199424384, 0.9617122871838016, 0.7100577833339337, 0.121294805
5607276, 0.6936177005172849, 0.23482677445551656 … 2.591575719341713e-17,
-4.1091983191362936e-17, 2.0626833259059077e-17, -1.4463509678397755e-16,
2.0395831854526762e-16, -5.3764055880827863e-17, 1.4117565395739659e-16, 8.
780245483649738e-17, -1.6145292380536665e-17, -1.6940053860035896e-16], [-0
.4070263380337265, 0.3463758772823128, 0.8451942450015635, 0.07752934752447
81, -0.2628662719939629, 0.9617122871838669, 0.710057783333957, 0.121294805
56064282, 0.6936177005172758, 0.23482677445575265 … 2.7636063665353124e-1
7, 4.187014471734201e-17, -3.461270503955795e-17, -6.938151434523581e-17, -
7.775876497440629e-18, -3.8009136090821534e-17, 9.940124500639636e-18, -6.1
62808727301765e-17, 1.0065655084765698e-17, -8.961491141050544e-17], [-0.40
70263380336457, 0.34637587728226366, 0.8451942450016224, 0.0775293475245606
6, -0.26286627199395185, 0.9617122871838634, 0.7100577833340136, 0.12129480
556070482, 0.693617700517207, 0.23482677445572508 … -6.299379314752023e-1
8, 2.0987276361306345e-17, -1.3126982051883809e-17, -1.7195057781935976e-17
, 9.469632593821262e-18, 1.460032492868734e-17, -1.913154654592902e-18, -3.
123724743156313e-17, 6.573780646091978e-18, -1.4598073761116197e-17], [-0.4
070263380339401, 0.34637587728254415, 0.8451942450013658, 0.077529347524304
95, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.12129480
556104519, 0.6936177005173684, 0.2348267744554594 … -9.889037906229451e-1
8, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-18, -
2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18, -4.5
34073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], [-0.407
0263380339031, 0.3463758772825366, 0.8451942450013866, 0.0775293475242741,
-0.2628662719936408, 0.9617122871839714, 0.7100577833338019, 0.121294805560
93584, 0.6936177005173834, 0.23482677445553068 … 1.368813726986877e-17, 2
.682280828342363e-17, -2.0017019873396992e-17, 9.958428173144642e-18, 1.205
0515717680968e-17, 7.566959212233535e-19, 2.3335861812346315e-18, -7.502037
621165297e-18, -4.947746613447729e-18, 1.0568347471689677e-17]], nothing, n
othing, [0.0, 1.0e-6, 1.6470967226369328e-6, 2.294193445273866e-6, 2.977135
712855477e-6, 3.716381987606801e-6, 4.4980143822595655e-6, 5.32407414538628
4e-6, 6.198222174157507e-6, 7.15209167956576e-6 … 90.62924935784741, 96.4
1118414229268, 103.9199220781456, 114.87191298257301, 129.7006082275205, 15
6.73991527506118, 210.0365689126049, 349.1963120885956, 790.2907428803162,
1000.0], [[[-0.2650941332839412, 0.2759922279796341, 0.9238795325112867, -0
.10646921403545888, -0.367574367807928, 0.9238795325112867, 0.3715633473194
0005, 0.09158213982829398, 0.9238795325112867, 0.4945564328017459 … 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[2.329008649075334e-13, -2.
421182921470352e-13, 1.392337786488739e-13, 9.456938766104243e-14, 3.198054
0766111873e-13, 1.3819540581026445e-13, -3.231896226475528e-13, -8.12135405
0034028e-14, 1.3753604973773283e-13, 7.543874621631315e-15 … 4.7965760897
44114e-9, 1.2449916467794524e-8, 7.352986900688885e-9, -2.847357700022521e-
10, 6.488027516350089e-10, 6.191836107638364e-9, 1.2595141940986863e-9, -2.
1818996272074328e-9, 6.993748092029256e-10, -5.353042587201492e-9], [1.4400
12318091964e-16, -1.499212226662331e-16, -5.020171629429785e-16, 2.88435901
1772305e-17, 9.95807392983381e-17, -2.5044814080883225e-16, 1.9146074266787
502e-16, 4.719109377910017e-17, 4.759037198430588e-16, -1.6000425989246234e
-15 … -1.850194439057543e-8, -8.318397442548508e-8, -3.173043151966442e-8
, 1.02384226522217e-8, -3.1816862108305355e-9, -2.3983453904048587e-8, -8.9
93251884802461e-9, 3.0337849983070626e-8, 1.336949349263279e-8, 3.176578401
899016e-8], [-7.732734830149989e-16, 8.050629743102257e-16, 2.6949353232425
875e-15, -2.7274505903753265e-16, -9.416251782826912e-16, 2.366727131664605
e-15, -1.6397805685371173e-17, -4.041696104452426e-18, -4.077258281028749e-
17, 4.4643891251022475e-15 … 4.7264059915089154e-8, 4.951206389730138e-8,
4.383505373859753e-8, 1.9295159901805925e-8, 1.1261171229405317e-8, 4.1910
090315600974e-8, -3.660038551685818e-9, 1.9617038108300056e-8, 6.2858671779
62603e-9, -2.2777150340423118e-8]], [[9.754979130068976e-14, -1.01410521884
43501e-13, 5.821031128700952e-14, 3.9701797227940206e-14, 1.342668518720029
4e-13, 5.697871024818001e-14, -1.3496713794529226e-13, -3.3917314019086205e
-14, 5.849445106379199e-14, 2.990644083176309e-15 … 5.9265626846444606e-8
, -7.832313072890503e-8, 3.1164509245773836e-8, 5.779936067827917e-8, 1.426
099985827693e-8, 4.36083381193851e-8, -1.3887694928855505e-8, 1.08312497250
1413e-7, 4.698868781773118e-8, 1.8265461663822877e-8], [-2.705174941346661e
-16, 2.8163852860986083e-16, 9.4273754195843e-16, -4.1941627641377793e-16,
-1.447992660612928e-15, 3.639413577084834e-15, -6.09293552306679e-16, -1.50
17730254056623e-16, -1.5150300452406667e-15, -9.198583962499328e-16 … -2.
336163051005942e-7, 2.532976981793691e-7, -1.499458726887147e-7, -1.9430492
02746782e-7, -2.0756960042608595e-8, -1.7336444495451728e-7, 8.027692203576
83e-9, -3.27956881176238e-7, -1.5946545625321983e-7, -6.058699086792987e-8]
, [7.486636484253026e-16, -7.794414224862124e-16, -2.609167592608553e-15, 6
.536348856861068e-16, 2.2566094064126707e-15, -5.671873302714578e-15, -2.47
5630971060778e-16, -6.101882313477801e-17, -6.155571589512593e-16, 5.139662
639650202e-15 … 1.8439514261520042e-7, -2.4251146291223773e-7, 9.81840522
2981733e-8, 1.5834153955715792e-7, 9.469826250139925e-8, 1.353697789864804e
-7, -4.135193304281459e-8, 3.4719767986132704e-7, 8.619103616619875e-8, 6.4
0041585418059e-8]], [[9.751637745405484e-14, -1.0137573443355503e-13, 5.832
663304484553e-14, 3.947513024825673e-14, 1.3348430758381691e-13, 5.89454680
0230214e-14, -1.356038822274023e-13, -3.40742571784527e-14, 5.6911080712574
76e-14, 2.791229180839814e-15 … -6.325539171917654e-8, -4.880507394593051
e-8, -1.0365191747649828e-7, -1.8515106314101747e-9, 1.6588690992391823e-7,
-4.649669387786208e-8, -1.0167120236641661e-7, 1.5719886742734678e-7, -8.9
6572976044383e-8, 2.3587370549753437e-8], [6.395861771510233e-16, -6.658797
616997117e-16, -2.229064655814921e-15, 5.875631190520464e-16, 2.02850350810
2131e-15, -5.098583238496837e-15, 1.7800455714617074e-15, 4.387418987594553
e-16, 4.4259798214603884e-15, 2.041025455912056e-15 … 2.0867929993457815e
-7, 1.5456532677845713e-7, 3.4046620139628094e-7, -1.9963286847540608e-8, -
5.850907196208615e-7, 1.5383145128622714e-7, 3.1957077053963356e-7, -5.0203
17717437487e-7, 2.902816446565118e-7, -4.748576213572997e-8], [-1.609126074
7489834e-15, 1.6752777021532967e-15, 5.607965092395657e-15, -4.554107111206
343e-16, -1.572260166838109e-15, 3.951796194423215e-15, -1.821487903986573e
-15, -4.489564461245197e-16, -4.5290672653305025e-15, -4.148755784239142e-1
5 … -1.748846962424005e-7, -1.5758958660959831e-7, -2.795595125292649e-7,
-3.468123662477296e-8, 4.61017644343763e-7, -1.453587096721015e-7, -3.0361
35284038251e-7, 4.497042991024484e-7, -2.873088629913372e-7, 1.246451939898
1618e-7]], [[1.0839768617006801e-13, -1.1268734736393124e-13, 6.57398759508
1845e-14, 4.404009164136394e-14, 1.4892562260572978e-13, 6.504557319812252e
-14, -1.5101333714935568e-13, -3.7946456458778966e-14, 6.346539273229922e-1
4, 3.925947470755268e-15 … -8.595227384630061e-9, -5.726044812465624e-8,
5.2139465233569954e-9, -1.128714049123894e-7, -9.465264679776487e-8, -2.315
855626384194e-8, -8.548201711512563e-8, 5.009005631016199e-8, -8.9593332152
15087e-8, 1.8371520848551096e-7], [-6.234525541710712e-17, 6.49082674503853
9e-17, 2.1722895639343803e-16, 6.406306061477108e-16, 2.211713780302446e-15
, -5.559080435907259e-15, 1.9598322618055832e-15, 4.830553503304733e-16, 4.
873005804284966e-15, -1.5916820188247105e-15 … 4.883103844556398e-8, 2.39
49817316907025e-7, -2.5447814235325887e-8, 3.787314117408559e-7, 3.30001985
61650194e-7, 9.69873474816644e-8, 3.05428180255544e-7, -1.3641497937033323e
-7, 2.9235224927931854e-7, -6.313412423448591e-7], [2.1237718656089867e-15,
-2.2110807268400787e-15, -7.401557077265298e-15, -1.0481819791848935e-15,
-3.61874398954762e-15, 9.095529498203491e-15, -3.2381620530127223e-15, -7.9
81352629982038e-16, -8.0515789982781e-15, 2.285321632573246e-15 … -3.7336
2523336997e-8, -1.3022724913041303e-7, 1.6235298822792315e-8, -3.1117646804
08918e-7, -2.8593831079235797e-7, -5.205515092084365e-8, -2.579659487976866
5e-7, 1.1298669019901063e-7, -2.581397687600546e-7, 5.099666784398826e-7]],
[[1.2729448724344892e-13, -1.323323991600466e-13, 7.602693238800627e-14, 5
.1572112887736226e-14, 1.7439379803018807e-13, 7.646371867050377e-14, -1.76
57421310138227e-13, -4.437111879304546e-14, 7.527026953290118e-14, 4.092492
880846493e-15 … 2.708465783958937e-8, 1.7979795482002204e-7, -1.332038748
4673045e-8, 2.054793260891e-8, 4.057983366336542e-9, 7.546548480527036e-8,
3.104574030948411e-8, 3.81346864578176e-8, -2.882305549659228e-8, -5.584697
359142505e-8], [2.638880158529443e-16, -2.7473655074998015e-16, -9.19740123
8450057e-16, 1.5045457294348675e-16, 5.19429893136504e-16, -1.3056241263329
086e-15, -5.052145259216151e-16, -1.2452409208662128e-16, -1.25626198146692
58e-15, 4.007311296203613e-16 … -8.896237180928246e-8, -6.057324159286673
e-7, 1.0586961422866874e-8, -5.853112130814183e-8, 1.3858239459528202e-9, -
2.603256851418992e-7, -1.0566874507851492e-7, -1.1335610559049476e-7, 1.084
1435120697062e-7, 1.6147802107859376e-7], [-2.4976193613110903e-16, 2.60029
7197934356e-16, 8.704452937459741e-16, 3.022307818234314e-16, 1.04342170238
44295e-15, -2.622587533143813e-15, 1.6526534129402926e-15, 4.07342481573472
7e-16, 4.109266087352282e-15, 1.827199551266764e-16 … 1.0420450726374415e
-7, 4.918236438138313e-7, -2.3415390218230095e-8, 7.110833497267321e-8, -2.
834931427158748e-9, 2.202981479023184e-7, 1.1831003033601045e-7, 1.75384706
36806527e-7, -7.422671382036709e-8, -1.5419804266225507e-7]], [[1.422762638
805878e-13, -1.4790705483399017e-13, 8.511366027086067e-14, 5.7698577122757
9e-14, 1.9511380151610318e-13, 8.511061108186739e-14, -1.972806877726178e-1
3, -4.957501240019919e-14, 8.445355187240521e-14, 4.359777825354722e-15 …
4.3195185655811064e-8, -3.9591370610748844e-8, -6.13610283310654e-8, 5.615
3591324896904e-8, 1.0672180508708337e-8, -9.678924282846366e-9, 4.655951456
810997e-8, 1.4969572013438282e-7, 4.2487382734636815e-8, -6.276059981509176
e-8], [9.334953707266905e-16, -9.71871657612951e-16, -3.2534002959613602e-1
5, 4.444616150929372e-16, 1.5344600346218998e-15, -3.856862460138401e-15, 7
.358014285514888e-16, 1.8135888743718156e-16, 1.8294701306437145e-15, 3.304
1091760539187e-15 … -1.436178675825074e-7, 1.6445401098217013e-7, 1.89686
01816427323e-7, -1.9208952757044508e-7, -3.3482270084384905e-8, 4.533850408
325731e-8, -1.4062877539827099e-7, -4.722830234150871e-7, -1.34376671276067
45e-7, 2.436015038074281e-7], [-2.1728999252173405e-15, 2.2622284548424424e
-15, 7.572773271623023e-15, -9.494996523929977e-16, -3.2780530750503742e-15
, 8.239220161749195e-15, -1.4801059018605977e-15, -3.6481333977395476e-16,
-3.6802326138136255e-15, -6.580601980931413e-15 … 1.0915963162014489e-7,
-8.652446101016447e-8, -1.5957251287991334e-7, 1.8564536396420094e-7, 1.257
2472814549783e-8, -2.6497560555960854e-8, 1.5656727575589675e-7, 4.37766382
5053099e-7, 1.2696055039281198e-7, -1.7932857102211075e-7]], [[1.5859383999
45353e-13, -1.6486993854754912e-13, 9.616461627076922e-14, 6.46225578337961
6e-14, 2.1854060802424987e-13, 9.351171336452808e-14, -2.2081382137799575e-
13, -5.5486435886299764e-14, 9.315998069398061e-14, 4.8055300477197784e-15
… -1.8684750883661257e-8, 1.3231566076164336e-7, -1.4936501627409943e-8,
3.769597617883149e-8, -3.0184556534333754e-8, 3.60522270052365e-8, 7.161157
783450963e-8, 1.041204609902183e-7, 2.7426020088309984e-8, 8.68719223255961
6e-8], [-4.827620827360258e-16, 5.026085346418363e-16, 1.6823847308542384e-
15, -1.3766571423375286e-16, -4.752765527941903e-16, 1.1944950020365179e-15
, 3.0180416346548625e-16, 7.438819126896862e-17, 7.503372849066862e-16, 2.5
356941081489186e-15 … 6.883222835664354e-8, -4.43409531670426e-7, 5.03215
8927471288e-8, -1.3471704152783413e-7, 7.542726595036981e-8, -1.27254063289
56245e-7, -2.3455927502737803e-7, -3.4413861318984783e-7, -6.07238903568604
7e-8, -3.06885466310957e-7], [3.4192875899679825e-15, -3.559855468595075e-1
5, -1.1916558773831407e-14, -2.1859394460238923e-16, -7.546738433750318e-16
, 1.8968344340158358e-15, 1.1002239083641315e-15, 2.7118083779085923e-16, 2
.735669051956788e-15, -6.374783393319567e-15 … -4.555827264169388e-8, 4.0
24619011588676e-7, -3.385391040668277e-8, 9.827007992115115e-8, -1.15667541
2418732e-7, 8.125489561197523e-8, 1.888395669056863e-7, 3.4313229266449584e
-7, 6.800682579913679e-8, 2.441670886611288e-7]], [[1.7796445979724733e-13,
-1.8500768605817688e-13, 1.0640257226120706e-13, 7.236732685989553e-14, 2.
4473200871836764e-13, 1.046992673718445e-13, -2.4644313294995637e-13, -6.19
3058519340643e-14, 1.0638042045758794e-13, 6.163696760080131e-15 … 3.3780
601318791793e-8, 4.9503961062009e-8, 1.1675654957606491e-8, -3.225878790530
421e-8, -1.206443580389259e-7, -5.9048786413259235e-8, -2.153155527124158e-
8, 1.1220571394750231e-7, 6.903814810675059e-8, -4.581121381806065e-8], [-3
.61659197283323e-16, 3.7652706883945866e-16, 1.2603125483334366e-15, -1.587
3827915561096e-16, -5.480273696033283e-16, 1.3773341150699797e-15, -2.21658
85888488917e-15, -5.463398456220692e-16, -5.511576370067021e-15, -1.6292989
09981826e-15 … -1.3048691985765746e-7, -1.759310100922822e-7, -3.80566260
8374827e-8, 1.0958840580946393e-7, 3.9694330312467925e-7, 2.042758874685138
e-7, 9.463206483094778e-8, -3.9687550674669813e-7, -2.478148934742221e-7, 1
.5281098262873571e-7], [8.552397660947118e-16, -8.90398914061666e-16, -2.98
0596007487704e-15, -4.777059403008738e-16, -1.6492322276190324e-15, 4.14526
15651762445e-15, 3.7300246520205676e-15, 9.193685053315784e-16, 9.274578498
787597e-15, 1.828104212570456e-15 … 8.166076065848301e-8, 1.3762429824176
198e-7, 1.0364055331895934e-8, -1.1034073340598144e-7, -3.3825982494749514e
-7, -1.7992445705739276e-7, -5.8674853884516865e-8, 3.457218453203237e-7, 1
.825412127471602e-7, -1.3875734299391357e-7]], [[2.1197102143875668e-13, -2
.203602127817541e-13, 1.2646476855319824e-13, 8.602142679416823e-14, 2.9089
70705363114e-13, 1.2594623217188484e-13, -2.9369534818361214e-13, -7.380374
293061008e-14, 1.2604252795278236e-13, 6.98411004663418e-15 … -6.93185134
6922082e-8, -3.2474901240550226e-8, -4.3138419306593306e-8, -2.359260247979
3284e-8, -1.05663552457729e-8, -1.0639627943850269e-8, 6.016485462916882e-8
, -2.6685407436206117e-9, -6.983934204991137e-8, -2.028090872208354e-8], [8
.503315477476635e-16, -8.852889696292707e-16, -2.9636279454724476e-15, -3.7
541791895890775e-16, -1.2960920433412533e-15, 3.25752533962168e-15, -7.9697
95949658837e-16, -1.9643760271205906e-16, -1.981798613055377e-15, 1.1885112
144295883e-15 … 2.4874960221148326e-7, 1.0720393556749396e-7, 1.741413591
097744e-7, 6.559712438032968e-8, 1.640227898726473e-8, 2.493111112918529e-8
, -1.9860016570375251e-7, 1.3533156426073232e-8, 2.5225066546808844e-7, 5.2
39308528158099e-8], [-3.045070210097913e-15, 3.1702539064694722e-15, 1.0612
373827654362e-14, 1.0463997636023383e-15, 3.6125910668831605e-15, -9.080064
439887226e-15, 1.4987803965041519e-15, 3.6941618934811344e-16, 3.7266661058
39993e-15, -5.935006195322133e-15 … -2.0013819497033924e-7, -9.7396893010
24906e-8, -1.234452159536106e-7, -5.851628559007729e-8, -3.420069645183793e
-8, -6.319784762333243e-8, 1.5743192954956912e-7, -1.6275873051407166e-8, -
2.1816638700822127e-7, -8.529168370640278e-8]] … [[5.51535463328252e-8, 2
.5298357423514227e-10, 2.645701424356799e-8, -1.4796560143579518e-8, -1.084
1056580469145e-7, -2.8439197666066205e-8, -1.2452886751938582e-7, 5.8945353
47097569e-8, 1.1717246316326798e-7, 1.2904444838401166e-8 … -8.9777889204
21383e-15, -6.378741894477836e-14, -6.628764306889425e-14, -5.2143906181074
024e-14, -2.710207668315526e-13, -4.7608442199371664e-14, -3.01005831880363
8e-13, -3.214927219338173e-14, -1.7057826143056558e-13, -3.1837318604359804
e-13], [-4.0065538990987965e-8, 7.757166922682e-11, -1.932644341518057e-8,
1.2135618062729246e-8, 9.100159141723237e-8, 2.3895285196194683e-8, 1.02958
48520693135e-7, -4.5855927854266903e-8, -9.737981312264309e-8, -9.751300422
08869e-9 … 2.73794507881753e-14, 2.1053241060733812e-13, 2.17324710564788
44e-13, 1.705935403152266e-13, 9.05266448069153e-13, 1.5729491069844153e-13
, 1.0061704270448708e-12, 1.0731819742791523e-13, 5.682052986999642e-13, 1.
0598841040934532e-12], [8.300725850311214e-9, -7.812900762716138e-10, 4.317
626772593719e-9, -3.307217221700434e-9, -2.676297893558466e-8, -7.048546197
929573e-9, -3.0217671186657075e-8, 1.0689990455360105e-8, 2.906448698992171
2e-8, 1.5225372823725106e-9 … -2.77458141007138e-14, -1.8120382225343958e
-13, -1.8580125708668884e-13, -1.5023092252285896e-13, -7.622809175853718e-
13, -1.3597476812627765e-13, -8.538891230354988e-13, -9.390198394730395e-14
, -4.781630523362777e-13, -9.013495554464785e-13]], [[-7.847310180881833e-9
, 5.046308555354986e-10, -3.98589406014806e-9, 1.7042261831035332e-9, 1.604
0041865234114e-8, 4.246863967066101e-9, 1.8128107444952276e-8, -7.291297735
283094e-9, -1.7282715330828767e-8, -1.5424535866965716e-9 … -1.1843877612
961741e-14, -9.673393826988868e-15, -7.334157376942064e-15, -1.333872288217
6574e-14, 9.163919184723731e-15, -6.301252802813563e-15, -1.178953560603406
3e-16, -5.7832390709215535e-15, 5.4276245723495895e-15, -8.289116274474452e
-15], [-9.849908950416627e-9, -2.4784729759712434e-9, -3.727764494076792e-9
, 2.478945294928955e-9, 1.6547461808441204e-8, 4.3231056703559444e-9, 1.861
6658390841894e-8, -1.4084898918945651e-8, -1.6594845518847085e-8, -4.099657
386330258e-9 … 3.9806864859458105e-14, 3.1753621820667065e-14, 2.39107317
54973855e-14, 4.842572154225618e-14, -3.0477507140843334e-14, 2.09139813064
67292e-14, 1.9953133356645383e-15, 2.382421838664448e-14, -1.43553378451878
1e-14, 2.5553347842113872e-14], [5.413721359086831e-9, 2.1724940181469723e-
9, 1.7167988417342573e-9, -9.807456695598002e-10, -9.625592113825881e-9, -2
.5519218340482865e-9, -9.509462806529436e-9, 8.847732075631004e-9, 8.187619
15767055e-9, 3.2527632136062447e-9 … -3.915161138877712e-14, -3.440651384
3916743e-14, -2.2664249234384516e-14, -3.65599107759377e-14, 2.376684589575
7953e-14, -1.8048402427138352e-14, -3.2194618625986255e-15, -1.759952405911
8394e-14, 1.25330016002009e-14, -3.6486657852125814e-14]], [[-1.38310534388
22826e-8, -6.667322038270775e-10, -6.387481953961449e-9, 4.3723568739939724
e-9, 2.748728048017563e-8, 7.1606582996407065e-9, 3.2108703111476776e-8, -1
.614751310833006e-8, -3.0045977767303575e-8, -3.2571919933494404e-9 … -9.
407337439667638e-15, -1.2465368488725297e-14, -4.808769660278581e-15, 1.293
6723979245683e-14, -1.0273168266446189e-15, -5.149318298839142e-16, 1.62936
47206464396e-15, 1.0528946330326586e-14, 6.83664369523337e-15, -2.565508340
006948e-14], [6.531516660317306e-9, 1.955232578824657e-9, 2.344135119932036
3e-9, -2.2283320474027436e-9, -1.3901659374643311e-8, -3.6201202680679367e-
9, -1.4460486482166e-8, 1.0305920007395699e-8, 1.300100257859321e-8, 3.1890
891427798386e-9 … 3.2823734777347975e-14, 4.130538390859647e-14, 1.909572
2562372605e-14, -4.186739709914049e-14, 2.1681145068487015e-15, 5.358730174
633708e-15, -5.488340364032948e-15, -3.5933063699383065e-14, -2.15572973775
08467e-14, 8.77373758296362e-14], [-9.555032793322404e-10, -1.3892975000496
682e-9, 1.0922370315386465e-10, 3.481071032511515e-10, 3.099788409401229e-9
, 8.192041593965448e-10, 1.7995785363559177e-9, -3.448978877428886e-9, -1.2
391140139936228e-9, -1.7748338562240365e-9 … -2.5753550734273973e-14, -2.
988235730237544e-14, -1.0881323819629762e-14, 3.8005120741339686e-14, -6.07
3682341178346e-15, -2.8457027821781656e-15, 6.3963023418314784e-15, 3.23742
02654479125e-14, 2.0578955631103133e-14, -7.122690811938235e-14]], [[-3.258
322007191662e-9, 2.5042988314488213e-10, -1.6717635746471654e-9, 1.00906945
4962688e-9, 6.355385875114917e-9, 1.655781453776282e-9, 7.774030658228265e-
9, -3.116952879015037e-9, -7.413219934826355e-9, -4.455435933001594e-10 …
5.033493529685319e-15, 8.300823337119941e-15, 1.259278295404757e-14, 6.760
656740888077e-15, -7.41401175247845e-15, 7.404195500398103e-15, 3.845835779
225105e-15, 2.714845436842629e-15, 5.419892826101074e-15, 7.53653015365344e
-15], [4.310697941679785e-9, -8.220228644931229e-10, 2.4128074797241378e-9,
-1.3585288186916658e-9, -7.919915675795873e-9, -2.0552432000497336e-9, -1.
0248562374246265e-8, 3.065318376950429e-9, 9.955423855400764e-9, 9.82122929
959969e-11 … -1.783652814989498e-14, -2.873035162373235e-14, -4.106869092
6460964e-14, -2.4382595402197393e-14, 2.469871808661591e-14, -2.60337199220
43402e-14, -1.3881363689945104e-14, -8.654403682860375e-15, -1.881488290800
784e-14, -2.5835756400653708e-14], [-1.903216150241802e-9, 6.24245339412137
3e-10, -1.1723617979316167e-9, 6.319615562435287e-10, 3.0619322689326388e-9
, 7.859658921083793e-10, 4.356629633411863e-9, -7.281771412407089e-10, -4.3
3253050647912e-9, 3.0979565029614556e-10 … 1.3982679250849675e-14, 2.1816
83338958378e-14, 3.4665585801879286e-14, 2.0457389676290317e-14, -2.2497636
096858057e-14, 2.135416578741862e-14, 1.0671632728187625e-14, 7.10916874249
4543e-15, 1.6444125669957137e-14, 2.0886834930818327e-14]], [[2.06340769344
6566e-10, -1.0266028712447267e-10, 1.414419398794513e-10, -9.60106446008933
e-11, -4.71037743401947e-10, -1.2100852632992778e-10, -6.273114682907624e-1
0, 1.0304806356528356e-10, 6.241608380617505e-10, -2.8944461671247033e-11
… -3.553940696458567e-15, -4.9948496578047645e-15, 1.3942790262524406e-15,
-2.6923547421297998e-15, -2.2938948561575944e-15, -3.3215318122261034e-15,
-2.8657372968532883e-15, 4.852301052112967e-17, -3.846135223051176e-16, -2
.4128619826791767e-15], [-2.915615467472206e-11, 3.539319851477426e-10, -1.
5909373018872918e-10, 1.4468752358909952e-10, 2.1419010335490528e-10, 4.687
8801451958565e-11, 4.980018166543765e-10, 3.9096188060815085e-10, -5.781665
682679509e-10, 2.884124791911236e-10 … 1.265318521928865e-14, 1.703001672
001214e-14, -5.643397351588013e-15, 9.800572945282922e-15, 7.81357165674732
e-15, 1.0869973003130937e-14, 1.1113517639553915e-14, 1.6133753309404396e-1
5, 7.849312552667725e-16, 8.588484248107566e-15], [-5.333954361684344e-11,
-2.893938853590727e-10, 9.291924308092591e-11, -1.0036579038188222e-10, 4.9
14242094968298e-11, 2.1521846844062638e-11, -1.380211213016478e-10, -4.3206
946020554674e-10, 2.168205073549167e-10, -2.8904692445863707e-10 … -1.021
3295861475515e-14, -1.3921041537632033e-14, 3.7099841830430945e-15, -8.7428
7293130287e-15, -6.2883764956735465e-15, -1.0188279275039997e-14, -6.331132
7390935376e-15, 9.345855611133692e-16, -1.3014090651584569e-15, -6.00145538
0566052e-15]], [[3.187057901298734e-11, 2.7784049321474786e-11, 3.961770439
7931674e-12, -3.643037344126362e-13, -1.4444894021019183e-11, -3.9179520090
07272e-12, -6.706128974627692e-12, 4.366876286868699e-11, -7.71518451384008
1e-13, 7.789396192611014e-12 … 1.5912057831061998e-15, 1.1986708072190756
e-15, -2.8507880189902035e-15, 4.130949416557639e-17, 9.167082580192201e-16
, -2.2213305330203224e-15, 6.96854726169571e-15, 5.529518993951503e-15, -1.
529131668460274e-15, 2.509771382373756e-15], [-9.949204930095428e-11, -9.76
1520079064891e-11, -7.913380268025569e-12, -4.2422792762702234e-13, 5.13865
8761213154e-11, 1.4079500867079288e-11, 3.27169974170371e-11, -1.5331395725
452176e-10, -6.6790068660453894e-12, -3.124507842813276e-11 … -5.25678685
2761264e-15, -3.2810560335607304e-15, 9.654644501296788e-15, 4.712649478759
212e-16, -3.536180795105845e-15, 7.896727822552986e-15, -2.3915180607351758
e-14, -1.902342632185367e-14, 4.811951550921873e-15, -7.465412354418053e-15
], [7.329449288912294e-11, 8.513945845980207e-11, 4.1576505524256745e-13, 3
.7665819273019885e-12, -3.739449778144473e-11, -1.0530763575684135e-11, -2.
6092794499587177e-11, 1.2969730261135162e-10, 4.021309785900992e-12, 3.1010
40145033783e-11 … 4.285957329842194e-15, 2.775255766755853e-15, -8.514814
318283155e-15, 5.846121736328203e-16, 1.2169115155986543e-15, -6.5042453097
21925e-15, 1.9369035609873702e-14, 1.568355125080646e-14, -3.70184138035850
3e-15, 7.435591573188728e-15]], [[-6.451956818619737e-12, -5.04095036423798
7e-13, -2.901726756225562e-12, 2.749931187252945e-12, 2.704855002249843e-12
, 5.171391294340436e-13, 4.2343396710152786e-13, -1.9605480839679924e-12, -
9.213173414071606e-14, 4.529773472931291e-12 … -3.6333494504974964e-16, 7
.038161241399107e-16, -4.1337572548832995e-16, 2.4262405138275977e-15, -3.4
304175382807537e-15, 8.780302000751896e-16, -2.3038261612462674e-15, -1.661
0758525073056e-15, 2.632277179064434e-16, 2.837665076405279e-15], [2.010052
138142345e-11, 2.2811675495202767e-12, 8.743941177814185e-12, -8.5157184980
53142e-12, -7.694064756413545e-12, -1.4079386050668685e-12, -2.052341068991
2031e-13, 6.410261341077864e-12, -9.108668707912626e-13, -1.523096751035572
4e-11 … 9.430373958351987e-16, -2.5053658135141985e-15, 1.628704792660604
e-15, -7.83073647267954e-15, 1.1691230307769293e-14, -2.745589495025749e-15
, 7.554950888491016e-15, 6.2193937694349125e-15, -9.456213785333777e-16, -9
.198387008608645e-15], [-1.5732239636044977e-11, -2.666918284485848e-12, -6
.473935101911236e-12, 6.885926998597844e-12, 5.625163654807202e-12, 9.62992
3744193548e-13, -1.2358655208847674e-13, -5.6064271128303794e-12, 1.1184438
384874366e-12, 1.2952374484143767e-11 … -8.66618229827804e-16, 1.79603447
3075556e-15, -1.1984660066123004e-15, 7.140201265467048e-15, -1.00450197308
26691e-14, 2.565399456254601e-15, -6.420300329191185e-15, -5.12013026307645
2e-15, 7.715839162798855e-16, 8.480382497708802e-15]], [[6.535320246000965e
-13, -5.609298798096617e-13, 5.422285458105238e-13, -3.1785363448686955e-13
, -3.0422210458041287e-13, -5.750999739247001e-14, 2.816705844851628e-13, -
4.354328569949381e-13, -2.123168444379802e-13, -2.0447883467683809e-13 …
-4.687255275339247e-16, -6.848928541611897e-16, 5.65447511610256e-16, 1.150
806590211932e-15, 1.0651674825977799e-16, 6.556894523772381e-16, -1.6615357
65159114e-16, 1.0764754426186549e-15, -2.4139744767627507e-16, 1.5490812921
750338e-15], [-2.2646468913081407e-12, 2.0256646120257007e-12, -1.915030377
367744e-12, 3.523227970776411e-13, 5.554160138039692e-13, 1.235779331220327
4e-13, -1.3267343333817147e-12, 5.53960973563552e-13, 1.2590198485991484e-1
2, 1.1774872876200815e-12 … 1.6062626105360942e-15, 2.182827178877512e-15
, -1.7927651519745636e-15, -3.758939498708203e-15, -3.233443059374628e-16,
-2.2495574134835785e-15, 5.823568177597848e-16, -3.5348953710348592e-15, 9.
05405315853721e-16, -5.2294925585321334e-15], [1.8330299466327443e-12, -1.7
89720215392315e-12, 1.6164663351249926e-12, -1.8776571604741736e-13, -2.732
5350409261974e-13, -5.987027229549397e-14, 1.3320738156571497e-12, -2.59887
5426723857e-13, -1.3122760691518136e-12, -1.2268732878796368e-12 … -1.327
8459311373455e-15, -1.9905340326387966e-15, 1.5741814007164681e-15, 3.30147
19727053445e-15, 1.6429003922311208e-16, 1.7783847215431755e-15, -4.9465623
28331962e-16, 3.2456946594335096e-15, -8.785328769324825e-16, 4.61707575686
3966e-15]], [[-2.883938385363519e-13, -5.161878768529796e-15, -1.3556726855
828818e-13, -1.6712688434259562e-13, 3.108697992228e-14, 2.1846659824951694
e-14, -1.6663648796283563e-13, 4.093365969677104e-14, 1.6451338299251784e-1
3, -1.989538094008615e-13 … 9.486126036351531e-17, -3.620620055747176e-16
, 2.3209602301823506e-16, 3.012545189634977e-16, -1.688992230857175e-16, -2
.3415050967304144e-16, 3.136801118766208e-17, 5.275165341153587e-16, -1.255
11594037549e-16, 2.5733412455562867e-16], [3.4708213565145687e-12, -3.34917
92830308648e-12, 3.036845987548322e-12, 2.6656693632510335e-12, -4.62883509
5479685e-12, -1.4785129797997628e-12, 2.3454494837718287e-12, -4.1037336758
95282e-12, -1.688960394761347e-12, 3.049722066951961e-12 … -2.70924290710
49565e-16, 1.2258461700165453e-15, -7.762531004862413e-16, -9.9558826796195
36e-16, 5.860511536168085e-16, 7.437958217164689e-16, -7.650854069293489e-1
7, -1.7542901322300003e-15, 4.1853684323491226e-16, -9.141011347438608e-16]
, [-3.58307091064375e-12, 3.539586326791464e-12, -3.164334139065474e-12, -2
.7321294060229307e-12, 5.05787492257267e-12, 1.597709126357863e-12, -2.2192
26055533449e-12, 4.3302679941327675e-12, 1.5231506399262542e-12, -3.1068806
586597592e-12 … 3.0085945818914664e-16, -1.078599298820714e-15, 7.3386688
56856621e-16, 9.1638401551051e-16, -4.860098076057416e-16, -6.8208672153822
07e-16, 9.341274306792213e-17, 1.5255789929974405e-15, -3.723824676346482e-
16, 7.44943015540426e-16]], [[9.386062205023244e-15, -4.8842335606477305e-1
4, 2.4783640494181075e-14, -9.134217824700765e-14, -1.2532753935369067e-13,
-2.905600068212301e-14, -1.0607297407315322e-13, -2.8104874292852464e-14,
1.1263429339764584e-13, -6.289312850636147e-14 … 1.5351457380984269e-16,
-1.5210716715968303e-17, 1.4707132667510832e-16, 1.5261911405250162e-16, 5.
14983556302751e-17, -1.1459053746662135e-16, 9.827163035211398e-17, 1.02830
40918437123e-16, -5.232313552412591e-17, -1.36483141000052e-16], [-1.869246
6230777779e-13, 9.15469059594766e-13, -4.60594660530642e-13, 4.174617924559
3343e-13, 1.4944934269377257e-12, 3.785606323061935e-13, 3.830764793541696e
-13, 9.397197933933457e-13, -5.548437209094282e-13, 4.028057421035095e-14
… -5.439681208882951e-16, -9.218645762417292e-17, -4.451240145265388e-16,
-5.6275134663729045e-16, -2.5356481198161243e-16, 3.8724013312396145e-16, -
3.5168591933052875e-16, -3.611009240577747e-16, 1.78856862282501e-16, 4.482
995952563703e-16], [3.9012459418257586e-13, -8.343492067859798e-13, 5.16710
6523695732e-13, -3.6629315161340336e-13, -1.517012437366762e-12, -3.8115577
65514476e-13, -2.9997585540220074e-13, -9.40392775349287e-13, 4.74938245760
6865e-13, 8.171012041420787e-14 … 3.444608842721769e-16, -1.0077826041643
763e-16, 5.412744014614547e-16, 4.0915815269803087e-16, 1.545957709531198e-
16, -3.4526222401182245e-16, 2.85007359937849e-16, 3.877310898354694e-16, -
9.449776717427846e-17, -4.696434373674202e-16]]], nothing, SciMLBase.ODEPro
blem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullParamete
rs, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"#
#WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(
Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_O
BSERVED), Nothing, Nothing, Nothing, Nothing}, Base.Pairs{Symbol, Union{},
Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".feket
e_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#
225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothi
ng, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!, [1.0 0.0 …
0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], noth
ing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEF
AULT_OBSERVED, nothing, nothing, nothing, nothing), [-0.2650941332839412, 0
.2759922279796341, 0.9238795325112867, -0.10646921403545888, -0.36757436780
7928, 0.9238795325112867, 0.37156334731940005, 0.09158213982829398, 0.92387
95325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0], (0.0, 1000.0), SciMLBase.NullParameters(), Base.Pairs{Symbol, U
nion{}, Tuple{}, @NamedTuple{}}(), SciMLBase.StandardODEProblem()), Ordinar
yDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqC
ore.DEFAULT_PRECS), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCo
re.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}(nothing,
OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDiffEqCore.trivial_limiter!, Ord
inaryDiffEqCore.trivial_limiter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}())), OrdinaryDiffEqCore.Interpola
tionData{SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.
var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, ty
peof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFA
ULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Vector{Float64}}
, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, OrdinaryDiffEq
Rosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vecto
r{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.Roda
sTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.O
DEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#2
25".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##Weav
eSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothi
ng, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters},
SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Ful
lSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float
64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}
, Float64, SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float6
4}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve
.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{
Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64
, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vect
or{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Fl
oat64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{F
loat64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}},
Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefV
alue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}
, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{Linea
rAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float6
4, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Sile
nt, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciML
Logging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sile
nt, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, T
uple{Nothing, Nothing}, Tuple{DifferentiationInterfaceForwardDiffExt.Forwar
dDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##
WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParamete
rs}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDif
f.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.Forwar
dDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##
WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParamete
rs}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDif
f.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0,
ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:for
ward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof
(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_l
imiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVector}(SciMLBas
e.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBo
x#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##W
eaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), No
thing, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!,
[1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.
0 0.0], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, S
ciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [[-0.265094
1332839412, 0.2759922279796341, 0.9238795325112867, -0.10646921403545888, -
0.367574367807928, 0.9238795325112867, 0.37156334731940005, 0.0915821398282
9398, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0, 0.0, 0
.0, 0.0, 0.0, 0.0, 0.0], [-0.2650941332841742, 0.2759922279798762, 0.923879
5325111475, -0.10646921403555346, -0.3675743678082478, 0.9238795325111486,
0.37156334731972307, 0.09158213982837514, 0.9238795325111487, 0.49455643280
17384 … -2.9381980376366813e-9, 4.86158636660428e-9, -1.2869567280894642e
-9, -3.2198125918363613e-9, -6.800682075927034e-10, -2.0613020551547345e-9,
1.395353671803122e-9, -5.950468450941714e-9, -3.1091445411164066e-9, -1.17
94920129632018e-9], [-0.26509413328457315, 0.275992227980291, 0.92387953251
09092, -0.10646921403571546, -0.3675743678087956, 0.9238795325109119, 0.371
56334732027646, 0.09158213982851418, 0.9238795325109125, 0.4945564328017254
… 3.773980583547631e-9, 2.9180823857587613e-9, 6.262879513645702e-9, 3.9
07556772321569e-10, -9.50897966840413e-9, 2.9618965045870536e-9, 5.98590696
2402134e-9, -9.907983177907806e-9, 4.857183359386243e-9, -1.037724609437882
7e-9], [-0.2650941332851672, 0.2759922279809085, 0.9238795325105542, -0.106
4692140359567, -0.3675743678096114, 0.9238795325105595, 0.3715633473211003,
0.0915821398287212, 0.9238795325105607, 0.49455643280170614 … 2.51578610
839588e-11, 3.110473938978998e-9, -2.7489828242557556e-10, 6.73825034498841
1e-9, 5.447683730400059e-9, 1.2408042216050644e-9, 4.738472372329455e-9, -3
.816383768998203e-9, 5.243285297956977e-9, -1.0814401231430751e-8], [-0.265
0941332860057, 0.2759922279817802, 0.9238795325100533, -0.10646921403629718
, -0.3675743678107627, 0.9238795325100623, 0.37156334732226315, 0.091582139
8290134, 0.9238795325100639, 0.4945564328016791 … -1.4930375118523534e-9,
-1.0677206569701569e-8, 1.2123400367883947e-9, -9.630793742110146e-10, -4.
964615506365783e-10, -4.371563998672631e-9, -1.4449718034149703e-9, -1.5707
855905313584e-9, 1.6860645000515239e-9, 3.766706411702783e-9], [-0.26509413
32871582, 0.2759922279829783, 0.9238795325093646, -0.10646921403676515, -0.
3675743678123452, 0.9238795325093787, 0.37156334732386154, 0.09158213982941
507, 0.9238795325093813, 0.4945564328016418 … -2.829457295085245e-9, 2.30
678914896376e-9, 4.019045677623573e-9, -3.0870113868925387e-9, -9.402362716
664351e-10, 5.341789967056231e-10, -2.8827792190756617e-9, -9.3600068590591
29e-9, -2.5753422404871796e-9, 3.264240878693443e-9], [-0.2650941332886537,
0.275992227984533, 0.923879532508471, -0.10646921403737239, -0.36757436781
43986, 0.9238795325084919, 0.3715633473259356, 0.09158213982993625, 0.92387
95325084955, 0.4945564328015934 … 1.3163880292736783e-9, -7.5209643056310
57e-9, 9.434997922878726e-10, -1.916103204104861e-9, 1.646175760775223e-9,
-2.297769321134328e-9, -4.630660131508884e-9, -5.46221286212423e-9, -1.9269
349778233163e-9, -5.1301181570586886e-9], [-0.2650941332905436, 0.275992227
9864977, 0.9238795325073419, -0.10646921403813973, -0.3675743678169936, 0.9
23879532507371, 0.3715633473285565, 0.09158213983059485, 0.9238795325073761
, 0.4945564328015323 … -1.8698349995330668e-9, -2.7464017247324886e-9, -8
.827596628252208e-10, 1.8128003092538084e-9, 7.164037967350772e-9, 3.100919
913020742e-9, 8.036908245127148e-10, -5.923162444730369e-9, -4.023843536328
8964e-9, 2.764308117529542e-9], [-0.26509413329288956, 0.2759922279889366,
0.9238795325059401, -0.10646921403909228, -0.36757436782021485, 0.923879532
5059795, 0.37156334733181, 0.09158213983141243, 0.9238795325059865, 0.49455
64328014564 … 3.950627054635561e-9, 1.771468244135932e-9, 2.1010100749223
71e-9, 1.5672871413690205e-9, 8.320401732162137e-10, 5.104570071681936e-10,
-3.450993958468019e-9, 2.128621167396301e-10, 3.873601566936303e-9, 9.2423
01486958966e-10], [-0.26509413329585574, 0.27599222799202006, 0.92387953250
4168, -0.10646921404029665, -0.3675743678242877, 0.9238795325042204, 0.3715
6334733592344, 0.0915821398324461, 0.9238795325042298, 0.49455643280136047
… -2.3171051265390624e-9, 8.027530206632113e-10, -4.287360150284864e-9, 1
.32569536898589e-9, 3.3766392808190897e-9, 4.965416267302419e-9, 5.35249200
6491146e-10, -1.4576853573447413e-10, -1.0253611519609038e-9, 5.49317428294
1085e-9] … [-0.40702629538697305, 0.3463758774581013, 0.845194265467228,
0.0775293349555316, -0.26286635564642724, 0.9617122653322662, 0.71005768493
19006, 0.12129485192767821, 0.6936177931433077, 0.23482678332007131 … 6.4
5195633876406e-16, 5.07580972346805e-16, 4.1269969664277186e-16, 8.00397654
9593222e-16, -5.098071221153372e-16, 4.1493581733728216e-16, 4.991997837855
795e-17, 2.812127590431388e-16, -3.2792098322469923e-16, 4.986480541842396e
-16], [-0.4070263264532298, 0.3463758773698235, 0.8451942505426039, 0.07752
934406298198, -0.26286629470298095, 0.9617122812558283, 0.71005775657401, 0
.12129481821517442, 0.693617725698552, 0.2348267768556548 … 5.46081741471
2736e-16, 7.944599995175238e-16, 2.994717110861975e-16, -7.71874540637152e-
16, 9.238612467296446e-17, -1.6084641081674373e-17, -6.843868519741059e-17,
-5.824772084963076e-16, -4.149216585893152e-16, 1.4944995287594123e-15], [
-0.4070263376170111, 0.3463758772665546, 0.845194245208702, 0.0775293473911
6238, -0.262866272834908, 0.9617122869647575, 0.7100577823210024, 0.1212948
0600474604, 0.6936177014765779, 0.23482677452588221 … -3.001685519005525e
-16, -4.927879823606554e-16, -7.672731763005923e-16, -3.618510822795282e-16
, 4.4407681458549273e-16, -4.3837837487325375e-16, -2.096697281370121e-16,
-1.62820072767635e-16, -3.2578697248948327e-16, -4.41406222100141e-16], [-0
.40702633814491695, 0.3463758772875023, 0.8451942449458898, 0.0775293475583
2482, -0.26286627176995647, 0.9617122872423663, 0.7100577836014212, 0.12129
480544675361, 0.6936177002633882, 0.2348267744343191 … 2.047744004585689e
-16, 3.087767656201961e-16, -6.629439363779967e-17, 1.3815133735597564e-16,
1.4459832646234013e-16, 1.8232152689521258e-16, 1.7402127852320578e-16, -2
.5751693857519957e-17, 2.3280192043677322e-17, 1.4033036960087473e-16], [-0
.40702633803512056, 0.3463758772808107, 0.8451942450015076, 0.0775293475244
1541, -0.2628662719946926, 0.9617122871836725, 0.7100577833323328, 0.121294
80555908226, 0.6936177005192113, 0.23482677445571434 … -1.058213477738663
9e-16, -8.913087083349813e-17, 1.6810697580463989e-16, -5.443965972723508e-
18, -5.616852684998393e-17, 1.2399789163774917e-16, -4.184150768197455e-16,
-3.282372768911615e-16, 9.995597575218945e-17, -1.612845826147695e-16], [-
0.40702633803316884, 0.3463758772822533, 0.8451942450018565, 0.077529347524
3368, -0.26286627199424384, 0.9617122871838016, 0.7100577833339337, 0.12129
48055607276, 0.6936177005172849, 0.23482677445551656 … 2.591575719341713e
-17, -4.1091983191362936e-17, 2.0626833259059077e-17, -1.4463509678397755e-
16, 2.0395831854526762e-16, -5.3764055880827863e-17, 1.4117565395739659e-16
, 8.780245483649738e-17, -1.6145292380536665e-17, -1.6940053860035896e-16],
[-0.4070263380337265, 0.3463758772823128, 0.8451942450015635, 0.0775293475
244781, -0.2628662719939629, 0.9617122871838669, 0.710057783333957, 0.12129
480556064282, 0.6936177005172758, 0.23482677445575265 … 2.763606366535312
4e-17, 4.187014471734201e-17, -3.461270503955795e-17, -6.938151434523581e-1
7, -7.775876497440629e-18, -3.8009136090821534e-17, 9.940124500639636e-18,
-6.162808727301765e-17, 1.0065655084765698e-17, -8.961491141050544e-17], [-
0.4070263380336457, 0.34637587728226366, 0.8451942450016224, 0.077529347524
56066, -0.26286627199395185, 0.9617122871838634, 0.7100577833340136, 0.1212
9480556070482, 0.693617700517207, 0.23482677445572508 … -6.29937931475202
3e-18, 2.0987276361306345e-17, -1.3126982051883809e-17, -1.7195057781935976
e-17, 9.469632593821262e-18, 1.460032492868734e-17, -1.913154654592902e-18,
-3.123724743156313e-17, 6.573780646091978e-18, -1.4598073761116197e-17], [
-0.4070263380339401, 0.34637587728254415, 0.8451942450013658, 0.07752934752
430495, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.1212
9480556104519, 0.6936177005173684, 0.2348267744554594 … -9.88903790622945
1e-18, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-1
8, -2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18,
-4.534073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], [-0
.4070263380339031, 0.3463758772825366, 0.8451942450013866, 0.07752934752427
41, -0.2628662719936408, 0.9617122871839714, 0.7100577833338019, 0.12129480
556093584, 0.6936177005173834, 0.23482677445553068 … 1.368813726986877e-1
7, 2.682280828342363e-17, -2.0017019873396992e-17, 9.958428173144642e-18, 1
.2050515717680968e-17, 7.566959212233535e-19, 2.3335861812346315e-18, -7.50
2037621165297e-18, -4.947746613447729e-18, 1.0568347471689677e-17]], [0.0,
1.0e-6, 1.6470967226369328e-6, 2.294193445273866e-6, 2.977135712855477e-6,
3.716381987606801e-6, 4.4980143822595655e-6, 5.324074145386284e-6, 6.198222
174157507e-6, 7.15209167956576e-6 … 90.62924935784741, 96.41118414229268,
103.9199220781456, 114.87191298257301, 129.7006082275205, 156.739915275061
18, 210.0365689126049, 349.1963120885956, 790.2907428803162, 1000.0], [[[-0
.2650941332839412, 0.2759922279796341, 0.9238795325112867, -0.1064692140354
5888, -0.367574367807928, 0.9238795325112867, 0.37156334731940005, 0.091582
13982829398, 0.9238795325112867, 0.4945564328017459 … 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[2.329008649075334e-13, -2.42118292147035
2e-13, 1.392337786488739e-13, 9.456938766104243e-14, 3.1980540766111873e-13
, 1.3819540581026445e-13, -3.231896226475528e-13, -8.121354050034028e-14, 1
.3753604973773283e-13, 7.543874621631315e-15 … 4.796576089744114e-9, 1.24
49916467794524e-8, 7.352986900688885e-9, -2.847357700022521e-10, 6.48802751
6350089e-10, 6.191836107638364e-9, 1.2595141940986863e-9, -2.18189962720743
28e-9, 6.993748092029256e-10, -5.353042587201492e-9], [1.440012318091964e-1
6, -1.499212226662331e-16, -5.020171629429785e-16, 2.884359011772305e-17, 9
.95807392983381e-17, -2.5044814080883225e-16, 1.9146074266787502e-16, 4.719
109377910017e-17, 4.759037198430588e-16, -1.6000425989246234e-15 … -1.850
194439057543e-8, -8.318397442548508e-8, -3.173043151966442e-8, 1.0238422652
2217e-8, -3.1816862108305355e-9, -2.3983453904048587e-8, -8.993251884802461
e-9, 3.0337849983070626e-8, 1.336949349263279e-8, 3.176578401899016e-8], [-
7.732734830149989e-16, 8.050629743102257e-16, 2.6949353232425875e-15, -2.72
74505903753265e-16, -9.416251782826912e-16, 2.366727131664605e-15, -1.63978
05685371173e-17, -4.041696104452426e-18, -4.077258281028749e-17, 4.46438912
51022475e-15 … 4.7264059915089154e-8, 4.951206389730138e-8, 4.38350537385
9753e-8, 1.9295159901805925e-8, 1.1261171229405317e-8, 4.1910090315600974e-
8, -3.660038551685818e-9, 1.9617038108300056e-8, 6.285867177962603e-9, -2.2
777150340423118e-8]], [[9.754979130068976e-14, -1.0141052188443501e-13, 5.8
21031128700952e-14, 3.9701797227940206e-14, 1.3426685187200294e-13, 5.69787
1024818001e-14, -1.3496713794529226e-13, -3.3917314019086205e-14, 5.8494451
06379199e-14, 2.990644083176309e-15 … 5.9265626846444606e-8, -7.832313072
890503e-8, 3.1164509245773836e-8, 5.779936067827917e-8, 1.426099985827693e-
8, 4.36083381193851e-8, -1.3887694928855505e-8, 1.083124972501413e-7, 4.698
868781773118e-8, 1.8265461663822877e-8], [-2.705174941346661e-16, 2.8163852
860986083e-16, 9.4273754195843e-16, -4.1941627641377793e-16, -1.44799266061
2928e-15, 3.639413577084834e-15, -6.09293552306679e-16, -1.5017730254056623
e-16, -1.5150300452406667e-15, -9.198583962499328e-16 … -2.33616305100594
2e-7, 2.532976981793691e-7, -1.499458726887147e-7, -1.943049202746782e-7, -
2.0756960042608595e-8, -1.7336444495451728e-7, 8.02769220357683e-9, -3.2795
6881176238e-7, -1.5946545625321983e-7, -6.058699086792987e-8], [7.486636484
253026e-16, -7.794414224862124e-16, -2.609167592608553e-15, 6.5363488568610
68e-16, 2.2566094064126707e-15, -5.671873302714578e-15, -2.475630971060778e
-16, -6.101882313477801e-17, -6.155571589512593e-16, 5.139662639650202e-15
… 1.8439514261520042e-7, -2.4251146291223773e-7, 9.818405222981733e-8, 1.
5834153955715792e-7, 9.469826250139925e-8, 1.353697789864804e-7, -4.1351933
04281459e-8, 3.4719767986132704e-7, 8.619103616619875e-8, 6.40041585418059e
-8]], [[9.751637745405484e-14, -1.0137573443355503e-13, 5.832663304484553e-
14, 3.947513024825673e-14, 1.3348430758381691e-13, 5.894546800230214e-14, -
1.356038822274023e-13, -3.40742571784527e-14, 5.691108071257476e-14, 2.7912
29180839814e-15 … -6.325539171917654e-8, -4.880507394593051e-8, -1.036519
1747649828e-7, -1.8515106314101747e-9, 1.6588690992391823e-7, -4.6496693877
86208e-8, -1.0167120236641661e-7, 1.5719886742734678e-7, -8.96572976044383e
-8, 2.3587370549753437e-8], [6.395861771510233e-16, -6.658797616997117e-16,
-2.229064655814921e-15, 5.875631190520464e-16, 2.028503508102131e-15, -5.0
98583238496837e-15, 1.7800455714617074e-15, 4.387418987594553e-16, 4.425979
8214603884e-15, 2.041025455912056e-15 … 2.0867929993457815e-7, 1.54565326
77845713e-7, 3.4046620139628094e-7, -1.9963286847540608e-8, -5.850907196208
615e-7, 1.5383145128622714e-7, 3.1957077053963356e-7, -5.020317717437487e-7
, 2.902816446565118e-7, -4.748576213572997e-8], [-1.6091260747489834e-15, 1
.6752777021532967e-15, 5.607965092395657e-15, -4.554107111206343e-16, -1.57
2260166838109e-15, 3.951796194423215e-15, -1.821487903986573e-15, -4.489564
461245197e-16, -4.5290672653305025e-15, -4.148755784239142e-15 … -1.74884
6962424005e-7, -1.5758958660959831e-7, -2.795595125292649e-7, -3.4681236624
77296e-8, 4.61017644343763e-7, -1.453587096721015e-7, -3.036135284038251e-7
, 4.497042991024484e-7, -2.873088629913372e-7, 1.2464519398981618e-7]], [[1
.0839768617006801e-13, -1.1268734736393124e-13, 6.573987595081845e-14, 4.40
4009164136394e-14, 1.4892562260572978e-13, 6.504557319812252e-14, -1.510133
3714935568e-13, -3.7946456458778966e-14, 6.346539273229922e-14, 3.925947470
755268e-15 … -8.595227384630061e-9, -5.726044812465624e-8, 5.213946523356
9954e-9, -1.128714049123894e-7, -9.465264679776487e-8, -2.315855626384194e-
8, -8.548201711512563e-8, 5.009005631016199e-8, -8.959333215215087e-8, 1.83
71520848551096e-7], [-6.234525541710712e-17, 6.490826745038539e-17, 2.17228
95639343803e-16, 6.406306061477108e-16, 2.211713780302446e-15, -5.559080435
907259e-15, 1.9598322618055832e-15, 4.830553503304733e-16, 4.87300580428496
6e-15, -1.5916820188247105e-15 … 4.883103844556398e-8, 2.3949817316907025
e-7, -2.5447814235325887e-8, 3.787314117408559e-7, 3.3000198561650194e-7, 9
.69873474816644e-8, 3.05428180255544e-7, -1.3641497937033323e-7, 2.92352249
27931854e-7, -6.313412423448591e-7], [2.1237718656089867e-15, -2.2110807268
400787e-15, -7.401557077265298e-15, -1.0481819791848935e-15, -3.61874398954
762e-15, 9.095529498203491e-15, -3.2381620530127223e-15, -7.981352629982038
e-16, -8.0515789982781e-15, 2.285321632573246e-15 … -3.73362523336997e-8,
-1.3022724913041303e-7, 1.6235298822792315e-8, -3.111764680408918e-7, -2.8
593831079235797e-7, -5.205515092084365e-8, -2.5796594879768665e-7, 1.129866
9019901063e-7, -2.581397687600546e-7, 5.099666784398826e-7]], [[1.272944872
4344892e-13, -1.323323991600466e-13, 7.602693238800627e-14, 5.1572112887736
226e-14, 1.7439379803018807e-13, 7.646371867050377e-14, -1.7657421310138227
e-13, -4.437111879304546e-14, 7.527026953290118e-14, 4.092492880846493e-15
… 2.708465783958937e-8, 1.7979795482002204e-7, -1.3320387484673045e-8, 2.
054793260891e-8, 4.057983366336542e-9, 7.546548480527036e-8, 3.104574030948
411e-8, 3.81346864578176e-8, -2.882305549659228e-8, -5.584697359142505e-8],
[2.638880158529443e-16, -2.7473655074998015e-16, -9.197401238450057e-16, 1
.5045457294348675e-16, 5.19429893136504e-16, -1.3056241263329086e-15, -5.05
2145259216151e-16, -1.2452409208662128e-16, -1.2562619814669258e-15, 4.0073
11296203613e-16 … -8.896237180928246e-8, -6.057324159286673e-7, 1.0586961
422866874e-8, -5.853112130814183e-8, 1.3858239459528202e-9, -2.603256851418
992e-7, -1.0566874507851492e-7, -1.1335610559049476e-7, 1.0841435120697062e
-7, 1.6147802107859376e-7], [-2.4976193613110903e-16, 2.600297197934356e-16
, 8.704452937459741e-16, 3.022307818234314e-16, 1.0434217023844295e-15, -2.
622587533143813e-15, 1.6526534129402926e-15, 4.073424815734727e-16, 4.10926
6087352282e-15, 1.827199551266764e-16 … 1.0420450726374415e-7, 4.91823643
8138313e-7, -2.3415390218230095e-8, 7.110833497267321e-8, -2.83493142715874
8e-9, 2.202981479023184e-7, 1.1831003033601045e-7, 1.7538470636806527e-7, -
7.422671382036709e-8, -1.5419804266225507e-7]], [[1.422762638805878e-13, -1
.4790705483399017e-13, 8.511366027086067e-14, 5.76985771227579e-14, 1.95113
80151610318e-13, 8.511061108186739e-14, -1.972806877726178e-13, -4.95750124
0019919e-14, 8.445355187240521e-14, 4.359777825354722e-15 … 4.31951856558
11064e-8, -3.9591370610748844e-8, -6.13610283310654e-8, 5.6153591324896904e
-8, 1.0672180508708337e-8, -9.678924282846366e-9, 4.655951456810997e-8, 1.4
969572013438282e-7, 4.2487382734636815e-8, -6.276059981509176e-8], [9.33495
3707266905e-16, -9.71871657612951e-16, -3.2534002959613602e-15, 4.444616150
929372e-16, 1.5344600346218998e-15, -3.856862460138401e-15, 7.3580142855148
88e-16, 1.8135888743718156e-16, 1.8294701306437145e-15, 3.3041091760539187e
-15 … -1.436178675825074e-7, 1.6445401098217013e-7, 1.8968601816427323e-7
, -1.9208952757044508e-7, -3.3482270084384905e-8, 4.533850408325731e-8, -1.
4062877539827099e-7, -4.722830234150871e-7, -1.3437667127606745e-7, 2.43601
5038074281e-7], [-2.1728999252173405e-15, 2.2622284548424424e-15, 7.5727732
71623023e-15, -9.494996523929977e-16, -3.2780530750503742e-15, 8.2392201617
49195e-15, -1.4801059018605977e-15, -3.6481333977395476e-16, -3.68023261381
36255e-15, -6.580601980931413e-15 … 1.0915963162014489e-7, -8.65244610101
6447e-8, -1.5957251287991334e-7, 1.8564536396420094e-7, 1.2572472814549783e
-8, -2.6497560555960854e-8, 1.5656727575589675e-7, 4.377663825053099e-7, 1.
2696055039281198e-7, -1.7932857102211075e-7]], [[1.585938399945353e-13, -1.
6486993854754912e-13, 9.616461627076922e-14, 6.462255783379616e-14, 2.18540
60802424987e-13, 9.351171336452808e-14, -2.2081382137799575e-13, -5.5486435
886299764e-14, 9.315998069398061e-14, 4.8055300477197784e-15 … -1.8684750
883661257e-8, 1.3231566076164336e-7, -1.4936501627409943e-8, 3.769597617883
149e-8, -3.0184556534333754e-8, 3.60522270052365e-8, 7.161157783450963e-8,
1.041204609902183e-7, 2.7426020088309984e-8, 8.687192232559616e-8], [-4.827
620827360258e-16, 5.026085346418363e-16, 1.6823847308542384e-15, -1.3766571
423375286e-16, -4.752765527941903e-16, 1.1944950020365179e-15, 3.0180416346
548625e-16, 7.438819126896862e-17, 7.503372849066862e-16, 2.535694108148918
6e-15 … 6.883222835664354e-8, -4.43409531670426e-7, 5.032158927471288e-8,
-1.3471704152783413e-7, 7.542726595036981e-8, -1.2725406328956245e-7, -2.3
455927502737803e-7, -3.4413861318984783e-7, -6.072389035686047e-8, -3.06885
466310957e-7], [3.4192875899679825e-15, -3.559855468595075e-15, -1.19165587
73831407e-14, -2.1859394460238923e-16, -7.546738433750318e-16, 1.8968344340
158358e-15, 1.1002239083641315e-15, 2.7118083779085923e-16, 2.7356690519567
88e-15, -6.374783393319567e-15 … -4.555827264169388e-8, 4.024619011588676
e-7, -3.385391040668277e-8, 9.827007992115115e-8, -1.156675412418732e-7, 8.
125489561197523e-8, 1.888395669056863e-7, 3.4313229266449584e-7, 6.80068257
9913679e-8, 2.441670886611288e-7]], [[1.7796445979724733e-13, -1.8500768605
817688e-13, 1.0640257226120706e-13, 7.236732685989553e-14, 2.44732008718367
64e-13, 1.046992673718445e-13, -2.4644313294995637e-13, -6.193058519340643e
-14, 1.0638042045758794e-13, 6.163696760080131e-15 … 3.3780601318791793e-
8, 4.9503961062009e-8, 1.1675654957606491e-8, -3.225878790530421e-8, -1.206
443580389259e-7, -5.9048786413259235e-8, -2.153155527124158e-8, 1.122057139
4750231e-7, 6.903814810675059e-8, -4.581121381806065e-8], [-3.6165919728332
3e-16, 3.7652706883945866e-16, 1.2603125483334366e-15, -1.5873827915561096e
-16, -5.480273696033283e-16, 1.3773341150699797e-15, -2.2165885888488917e-1
5, -5.463398456220692e-16, -5.511576370067021e-15, -1.629298909981826e-15
… -1.3048691985765746e-7, -1.759310100922822e-7, -3.805662608374827e-8, 1.
0958840580946393e-7, 3.9694330312467925e-7, 2.042758874685138e-7, 9.4632064
83094778e-8, -3.9687550674669813e-7, -2.478148934742221e-7, 1.5281098262873
571e-7], [8.552397660947118e-16, -8.90398914061666e-16, -2.980596007487704e
-15, -4.777059403008738e-16, -1.6492322276190324e-15, 4.1452615651762445e-1
5, 3.7300246520205676e-15, 9.193685053315784e-16, 9.274578498787597e-15, 1.
828104212570456e-15 … 8.166076065848301e-8, 1.3762429824176198e-7, 1.0364
055331895934e-8, -1.1034073340598144e-7, -3.3825982494749514e-7, -1.7992445
705739276e-7, -5.8674853884516865e-8, 3.457218453203237e-7, 1.8254121274716
02e-7, -1.3875734299391357e-7]], [[2.1197102143875668e-13, -2.2036021278175
41e-13, 1.2646476855319824e-13, 8.602142679416823e-14, 2.908970705363114e-1
3, 1.2594623217188484e-13, -2.9369534818361214e-13, -7.380374293061008e-14,
1.2604252795278236e-13, 6.98411004663418e-15 … -6.931851346922082e-8, -3
.2474901240550226e-8, -4.3138419306593306e-8, -2.3592602479793284e-8, -1.05
663552457729e-8, -1.0639627943850269e-8, 6.016485462916882e-8, -2.668540743
6206117e-9, -6.983934204991137e-8, -2.028090872208354e-8], [8.5033154774766
35e-16, -8.852889696292707e-16, -2.9636279454724476e-15, -3.754179189589077
5e-16, -1.2960920433412533e-15, 3.25752533962168e-15, -7.969795949658837e-1
6, -1.9643760271205906e-16, -1.981798613055377e-15, 1.1885112144295883e-15
… 2.4874960221148326e-7, 1.0720393556749396e-7, 1.741413591097744e-7, 6.5
59712438032968e-8, 1.640227898726473e-8, 2.493111112918529e-8, -1.986001657
0375251e-7, 1.3533156426073232e-8, 2.5225066546808844e-7, 5.239308528158099
e-8], [-3.045070210097913e-15, 3.1702539064694722e-15, 1.0612373827654362e-
14, 1.0463997636023383e-15, 3.6125910668831605e-15, -9.080064439887226e-15,
1.4987803965041519e-15, 3.6941618934811344e-16, 3.726666105839993e-15, -5.
935006195322133e-15 … -2.0013819497033924e-7, -9.739689301024906e-8, -1.2
34452159536106e-7, -5.851628559007729e-8, -3.420069645183793e-8, -6.3197847
62333243e-8, 1.5743192954956912e-7, -1.6275873051407166e-8, -2.181663870082
2127e-7, -8.529168370640278e-8]] … [[5.51535463328252e-8, 2.5298357423514
227e-10, 2.645701424356799e-8, -1.4796560143579518e-8, -1.0841056580469145e
-7, -2.8439197666066205e-8, -1.2452886751938582e-7, 5.894535347097569e-8, 1
.1717246316326798e-7, 1.2904444838401166e-8 … -8.977788920421383e-15, -6.
378741894477836e-14, -6.628764306889425e-14, -5.2143906181074024e-14, -2.71
0207668315526e-13, -4.7608442199371664e-14, -3.010058318803638e-13, -3.2149
27219338173e-14, -1.7057826143056558e-13, -3.1837318604359804e-13], [-4.006
5538990987965e-8, 7.757166922682e-11, -1.932644341518057e-8, 1.213561806272
9246e-8, 9.100159141723237e-8, 2.3895285196194683e-8, 1.0295848520693135e-7
, -4.5855927854266903e-8, -9.737981312264309e-8, -9.75130042208869e-9 … 2
.73794507881753e-14, 2.1053241060733812e-13, 2.1732471056478844e-13, 1.7059
35403152266e-13, 9.05266448069153e-13, 1.5729491069844153e-13, 1.0061704270
448708e-12, 1.0731819742791523e-13, 5.682052986999642e-13, 1.05988410409345
32e-12], [8.300725850311214e-9, -7.812900762716138e-10, 4.317626772593719e-
9, -3.307217221700434e-9, -2.676297893558466e-8, -7.048546197929573e-9, -3.
0217671186657075e-8, 1.0689990455360105e-8, 2.9064486989921712e-8, 1.522537
2823725106e-9 … -2.77458141007138e-14, -1.8120382225343958e-13, -1.858012
5708668884e-13, -1.5023092252285896e-13, -7.622809175853718e-13, -1.3597476
812627765e-13, -8.538891230354988e-13, -9.390198394730395e-14, -4.781630523
362777e-13, -9.013495554464785e-13]], [[-7.847310180881833e-9, 5.0463085553
54986e-10, -3.98589406014806e-9, 1.7042261831035332e-9, 1.6040041865234114e
-8, 4.246863967066101e-9, 1.8128107444952276e-8, -7.291297735283094e-9, -1.
7282715330828767e-8, -1.5424535866965716e-9 … -1.1843877612961741e-14, -9
.673393826988868e-15, -7.334157376942064e-15, -1.3338722882176574e-14, 9.16
3919184723731e-15, -6.301252802813563e-15, -1.1789535606034063e-16, -5.7832
390709215535e-15, 5.4276245723495895e-15, -8.289116274474452e-15], [-9.8499
08950416627e-9, -2.4784729759712434e-9, -3.727764494076792e-9, 2.4789452949
28955e-9, 1.6547461808441204e-8, 4.3231056703559444e-9, 1.8616658390841894e
-8, -1.4084898918945651e-8, -1.6594845518847085e-8, -4.099657386330258e-9
… 3.9806864859458105e-14, 3.1753621820667065e-14, 2.3910731754973855e-14,
4.842572154225618e-14, -3.0477507140843334e-14, 2.0913981306467292e-14, 1.9
953133356645383e-15, 2.382421838664448e-14, -1.435533784518781e-14, 2.55533
47842113872e-14], [5.413721359086831e-9, 2.1724940181469723e-9, 1.716798841
7342573e-9, -9.807456695598002e-10, -9.625592113825881e-9, -2.5519218340482
865e-9, -9.509462806529436e-9, 8.847732075631004e-9, 8.18761915767055e-9, 3
.2527632136062447e-9 … -3.915161138877712e-14, -3.4406513843916743e-14, -
2.2664249234384516e-14, -3.65599107759377e-14, 2.3766845895757953e-14, -1.8
048402427138352e-14, -3.2194618625986255e-15, -1.7599524059118394e-14, 1.25
330016002009e-14, -3.6486657852125814e-14]], [[-1.3831053438822826e-8, -6.6
67322038270775e-10, -6.387481953961449e-9, 4.3723568739939724e-9, 2.7487280
48017563e-8, 7.1606582996407065e-9, 3.2108703111476776e-8, -1.6147513108330
06e-8, -3.0045977767303575e-8, -3.2571919933494404e-9 … -9.40733743966763
8e-15, -1.2465368488725297e-14, -4.808769660278581e-15, 1.2936723979245683e
-14, -1.0273168266446189e-15, -5.149318298839142e-16, 1.6293647206464396e-1
5, 1.0528946330326586e-14, 6.83664369523337e-15, -2.565508340006948e-14], [
6.531516660317306e-9, 1.955232578824657e-9, 2.3441351199320363e-9, -2.22833
20474027436e-9, -1.3901659374643311e-8, -3.6201202680679367e-9, -1.44604864
82166e-8, 1.0305920007395699e-8, 1.300100257859321e-8, 3.1890891427798386e-
9 … 3.2823734777347975e-14, 4.130538390859647e-14, 1.9095722562372605e-14
, -4.186739709914049e-14, 2.1681145068487015e-15, 5.358730174633708e-15, -5
.488340364032948e-15, -3.5933063699383065e-14, -2.1557297377508467e-14, 8.7
7373758296362e-14], [-9.555032793322404e-10, -1.3892975000496682e-9, 1.0922
370315386465e-10, 3.481071032511515e-10, 3.099788409401229e-9, 8.1920415939
65448e-10, 1.7995785363559177e-9, -3.448978877428886e-9, -1.239114013993622
8e-9, -1.7748338562240365e-9 … -2.5753550734273973e-14, -2.98823573023754
4e-14, -1.0881323819629762e-14, 3.8005120741339686e-14, -6.073682341178346e
-15, -2.8457027821781656e-15, 6.3963023418314784e-15, 3.2374202654479125e-1
4, 2.0578955631103133e-14, -7.122690811938235e-14]], [[-3.258322007191662e-
9, 2.5042988314488213e-10, -1.6717635746471654e-9, 1.009069454962688e-9, 6.
355385875114917e-9, 1.655781453776282e-9, 7.774030658228265e-9, -3.11695287
9015037e-9, -7.413219934826355e-9, -4.455435933001594e-10 … 5.03349352968
5319e-15, 8.300823337119941e-15, 1.259278295404757e-14, 6.760656740888077e-
15, -7.41401175247845e-15, 7.404195500398103e-15, 3.845835779225105e-15, 2.
714845436842629e-15, 5.419892826101074e-15, 7.53653015365344e-15], [4.31069
7941679785e-9, -8.220228644931229e-10, 2.4128074797241378e-9, -1.3585288186
916658e-9, -7.919915675795873e-9, -2.0552432000497336e-9, -1.02485623742462
65e-8, 3.065318376950429e-9, 9.955423855400764e-9, 9.82122929959969e-11 …
-1.783652814989498e-14, -2.873035162373235e-14, -4.1068690926460964e-14, -
2.4382595402197393e-14, 2.469871808661591e-14, -2.6033719922043402e-14, -1.
3881363689945104e-14, -8.654403682860375e-15, -1.881488290800784e-14, -2.58
35756400653708e-14], [-1.903216150241802e-9, 6.242453394121373e-10, -1.1723
617979316167e-9, 6.319615562435287e-10, 3.0619322689326388e-9, 7.8596589210
83793e-10, 4.356629633411863e-9, -7.281771412407089e-10, -4.33253050647912e
-9, 3.0979565029614556e-10 … 1.3982679250849675e-14, 2.181683338958378e-1
4, 3.4665585801879286e-14, 2.0457389676290317e-14, -2.2497636096858057e-14,
2.135416578741862e-14, 1.0671632728187625e-14, 7.109168742494543e-15, 1.64
44125669957137e-14, 2.0886834930818327e-14]], [[2.063407693446566e-10, -1.0
266028712447267e-10, 1.414419398794513e-10, -9.60106446008933e-11, -4.71037
743401947e-10, -1.2100852632992778e-10, -6.273114682907624e-10, 1.030480635
6528356e-10, 6.241608380617505e-10, -2.8944461671247033e-11 … -3.55394069
6458567e-15, -4.9948496578047645e-15, 1.3942790262524406e-15, -2.6923547421
297998e-15, -2.2938948561575944e-15, -3.3215318122261034e-15, -2.8657372968
532883e-15, 4.852301052112967e-17, -3.846135223051176e-16, -2.4128619826791
767e-15], [-2.915615467472206e-11, 3.539319851477426e-10, -1.59093730188729
18e-10, 1.4468752358909952e-10, 2.1419010335490528e-10, 4.6878801451958565e
-11, 4.980018166543765e-10, 3.9096188060815085e-10, -5.781665682679509e-10,
2.884124791911236e-10 … 1.265318521928865e-14, 1.703001672001214e-14, -5
.643397351588013e-15, 9.800572945282922e-15, 7.81357165674732e-15, 1.086997
3003130937e-14, 1.1113517639553915e-14, 1.6133753309404396e-15, 7.849312552
667725e-16, 8.588484248107566e-15], [-5.333954361684344e-11, -2.89393885359
0727e-10, 9.291924308092591e-11, -1.0036579038188222e-10, 4.914242094968298
e-11, 2.1521846844062638e-11, -1.380211213016478e-10, -4.3206946020554674e-
10, 2.168205073549167e-10, -2.8904692445863707e-10 … -1.0213295861475515e
-14, -1.3921041537632033e-14, 3.7099841830430945e-15, -8.74287293130287e-15
, -6.2883764956735465e-15, -1.0188279275039997e-14, -6.3311327390935376e-15
, 9.345855611133692e-16, -1.3014090651584569e-15, -6.001455380566052e-15]],
[[3.187057901298734e-11, 2.7784049321474786e-11, 3.9617704397931674e-12, -
3.643037344126362e-13, -1.4444894021019183e-11, -3.917952009007272e-12, -6.
706128974627692e-12, 4.366876286868699e-11, -7.715184513840081e-13, 7.78939
6192611014e-12 … 1.5912057831061998e-15, 1.1986708072190756e-15, -2.85078
80189902035e-15, 4.130949416557639e-17, 9.167082580192201e-16, -2.221330533
0203224e-15, 6.96854726169571e-15, 5.529518993951503e-15, -1.52913166846027
4e-15, 2.509771382373756e-15], [-9.949204930095428e-11, -9.761520079064891e
-11, -7.913380268025569e-12, -4.2422792762702234e-13, 5.138658761213154e-11
, 1.4079500867079288e-11, 3.27169974170371e-11, -1.5331395725452176e-10, -6
.6790068660453894e-12, -3.124507842813276e-11 … -5.256786852761264e-15, -
3.2810560335607304e-15, 9.654644501296788e-15, 4.712649478759212e-16, -3.53
6180795105845e-15, 7.896727822552986e-15, -2.3915180607351758e-14, -1.90234
2632185367e-14, 4.811951550921873e-15, -7.465412354418053e-15], [7.32944928
8912294e-11, 8.513945845980207e-11, 4.1576505524256745e-13, 3.7665819273019
885e-12, -3.739449778144473e-11, -1.0530763575684135e-11, -2.60927944995871
77e-11, 1.2969730261135162e-10, 4.021309785900992e-12, 3.101040145033783e-1
1 … 4.285957329842194e-15, 2.775255766755853e-15, -8.514814318283155e-15,
5.846121736328203e-16, 1.2169115155986543e-15, -6.504245309721925e-15, 1.9
369035609873702e-14, 1.568355125080646e-14, -3.701841380358503e-15, 7.43559
1573188728e-15]], [[-6.451956818619737e-12, -5.040950364237987e-13, -2.9017
26756225562e-12, 2.749931187252945e-12, 2.704855002249843e-12, 5.1713912943
40436e-13, 4.2343396710152786e-13, -1.9605480839679924e-12, -9.213173414071
606e-14, 4.529773472931291e-12 … -3.6333494504974964e-16, 7.0381612413991
07e-16, -4.1337572548832995e-16, 2.4262405138275977e-15, -3.430417538280753
7e-15, 8.780302000751896e-16, -2.3038261612462674e-15, -1.6610758525073056e
-15, 2.632277179064434e-16, 2.837665076405279e-15], [2.010052138142345e-11,
2.2811675495202767e-12, 8.743941177814185e-12, -8.515718498053142e-12, -7.
694064756413545e-12, -1.4079386050668685e-12, -2.0523410689912031e-13, 6.41
0261341077864e-12, -9.108668707912626e-13, -1.5230967510355724e-11 … 9.43
0373958351987e-16, -2.5053658135141985e-15, 1.628704792660604e-15, -7.83073
647267954e-15, 1.1691230307769293e-14, -2.745589495025749e-15, 7.5549508884
91016e-15, 6.2193937694349125e-15, -9.456213785333777e-16, -9.1983870086086
45e-15], [-1.5732239636044977e-11, -2.666918284485848e-12, -6.4739351019112
36e-12, 6.885926998597844e-12, 5.625163654807202e-12, 9.629923744193548e-13
, -1.2358655208847674e-13, -5.6064271128303794e-12, 1.1184438384874366e-12,
1.2952374484143767e-11 … -8.66618229827804e-16, 1.796034473075556e-15, -
1.1984660066123004e-15, 7.140201265467048e-15, -1.0045019730826691e-14, 2.5
65399456254601e-15, -6.420300329191185e-15, -5.120130263076452e-15, 7.71583
9162798855e-16, 8.480382497708802e-15]], [[6.535320246000965e-13, -5.609298
798096617e-13, 5.422285458105238e-13, -3.1785363448686955e-13, -3.042221045
8041287e-13, -5.750999739247001e-14, 2.816705844851628e-13, -4.354328569949
381e-13, -2.123168444379802e-13, -2.0447883467683809e-13 … -4.68725527533
9247e-16, -6.848928541611897e-16, 5.65447511610256e-16, 1.150806590211932e-
15, 1.0651674825977799e-16, 6.556894523772381e-16, -1.661535765159114e-16,
1.0764754426186549e-15, -2.4139744767627507e-16, 1.5490812921750338e-15], [
-2.2646468913081407e-12, 2.0256646120257007e-12, -1.915030377367744e-12, 3.
523227970776411e-13, 5.554160138039692e-13, 1.2357793312203274e-13, -1.3267
343333817147e-12, 5.53960973563552e-13, 1.2590198485991484e-12, 1.177487287
6200815e-12 … 1.6062626105360942e-15, 2.182827178877512e-15, -1.792765151
9745636e-15, -3.758939498708203e-15, -3.233443059374628e-16, -2.24955741348
35785e-15, 5.823568177597848e-16, -3.5348953710348592e-15, 9.05405315853721
e-16, -5.2294925585321334e-15], [1.8330299466327443e-12, -1.789720215392315
e-12, 1.6164663351249926e-12, -1.8776571604741736e-13, -2.7325350409261974e
-13, -5.987027229549397e-14, 1.3320738156571497e-12, -2.598875426723857e-13
, -1.3122760691518136e-12, -1.2268732878796368e-12 … -1.3278459311373455e
-15, -1.9905340326387966e-15, 1.5741814007164681e-15, 3.3014719727053445e-1
5, 1.6429003922311208e-16, 1.7783847215431755e-15, -4.946562328331962e-16,
3.2456946594335096e-15, -8.785328769324825e-16, 4.617075756863966e-15]], [[
-2.883938385363519e-13, -5.161878768529796e-15, -1.3556726855828818e-13, -1
.6712688434259562e-13, 3.108697992228e-14, 2.1846659824951694e-14, -1.66636
48796283563e-13, 4.093365969677104e-14, 1.6451338299251784e-13, -1.98953809
4008615e-13 … 9.486126036351531e-17, -3.620620055747176e-16, 2.3209602301
823506e-16, 3.012545189634977e-16, -1.688992230857175e-16, -2.3415050967304
144e-16, 3.136801118766208e-17, 5.275165341153587e-16, -1.25511594037549e-1
6, 2.5733412455562867e-16], [3.4708213565145687e-12, -3.3491792830308648e-1
2, 3.036845987548322e-12, 2.6656693632510335e-12, -4.628835095479685e-12, -
1.4785129797997628e-12, 2.3454494837718287e-12, -4.103733675895282e-12, -1.
688960394761347e-12, 3.049722066951961e-12 … -2.7092429071049565e-16, 1.2
258461700165453e-15, -7.762531004862413e-16, -9.955882679619536e-16, 5.8605
11536168085e-16, 7.437958217164689e-16, -7.650854069293489e-17, -1.75429013
22300003e-15, 4.1853684323491226e-16, -9.141011347438608e-16], [-3.58307091
064375e-12, 3.539586326791464e-12, -3.164334139065474e-12, -2.7321294060229
307e-12, 5.05787492257267e-12, 1.597709126357863e-12, -2.219226055533449e-1
2, 4.3302679941327675e-12, 1.5231506399262542e-12, -3.1068806586597592e-12
… 3.0085945818914664e-16, -1.078599298820714e-15, 7.338668856856621e-16,
9.1638401551051e-16, -4.860098076057416e-16, -6.820867215382207e-16, 9.3412
74306792213e-17, 1.5255789929974405e-15, -3.723824676346482e-16, 7.44943015
540426e-16]], [[9.386062205023244e-15, -4.8842335606477305e-14, 2.478364049
4181075e-14, -9.134217824700765e-14, -1.2532753935369067e-13, -2.9056000682
12301e-14, -1.0607297407315322e-13, -2.8104874292852464e-14, 1.126342933976
4584e-13, -6.289312850636147e-14 … 1.5351457380984269e-16, -1.52107167159
68303e-17, 1.4707132667510832e-16, 1.5261911405250162e-16, 5.14983556302751
e-17, -1.1459053746662135e-16, 9.827163035211398e-17, 1.0283040918437123e-1
6, -5.232313552412591e-17, -1.36483141000052e-16], [-1.8692466230777779e-13
, 9.15469059594766e-13, -4.60594660530642e-13, 4.1746179245593343e-13, 1.49
44934269377257e-12, 3.785606323061935e-13, 3.830764793541696e-13, 9.3971979
33933457e-13, -5.548437209094282e-13, 4.028057421035095e-14 … -5.43968120
8882951e-16, -9.218645762417292e-17, -4.451240145265388e-16, -5.62751346637
29045e-16, -2.5356481198161243e-16, 3.8724013312396145e-16, -3.516859193305
2875e-16, -3.611009240577747e-16, 1.78856862282501e-16, 4.482995952563703e-
16], [3.9012459418257586e-13, -8.343492067859798e-13, 5.167106523695732e-13
, -3.6629315161340336e-13, -1.517012437366762e-12, -3.811557765514476e-13,
-2.9997585540220074e-13, -9.40392775349287e-13, 4.749382457606865e-13, 8.17
1012041420787e-14 … 3.444608842721769e-16, -1.0077826041643763e-16, 5.412
744014614547e-16, 4.0915815269803087e-16, 1.545957709531198e-16, -3.4526222
401182245e-16, 2.85007359937849e-16, 3.877310898354694e-16, -9.449776717427
846e-17, -4.696434373674202e-16]]], nothing, true, OrdinaryDiffEqRosenbrock
.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Float64}
, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTableau{F
loat64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction
{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete
_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#2
25".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothin
g, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, SciMLBase
.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecializ
e, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothi
ng, Nothing, typeof(Main.var"##WeaveSandBox#225".fekete_jac!), Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof
(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Float64,
SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float64}, Vector
{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve.DefaultLi
nearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Float64, M
atrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, Matrix{F
loat64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vect
or{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}
, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Float64, Flo
at64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{Float64, Ma
trix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, Tuple{Lin
earAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefValue{Int32
}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Base.R
efValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{F
loat64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Matri
x{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearAlgebra.D
iagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{
Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciMLL
ogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silen
t, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLL
ogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tuple{Nothi
ng, Nothing}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoAr
gDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunc
tion{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fe
kete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandB
ox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, No
thing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vecto
r{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivati
veConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoAr
gDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunc
tion{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fe
kete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandB
ox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, No
thing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vecto
r{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivati
veConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.A
utoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), t
rue, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryD
iffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!),
typeof(OrdinaryDiffEqCore.trivial_limiter!)}([-0.4070263380339031, 0.346375
8772825366, 0.8451942450013866, 0.0775293475242741, -0.2628662719936408, 0.
9617122871839714, 0.7100577833338019, 0.12129480556093584, 0.69361770051738
34, 0.23482677445553068 … 1.368813726986877e-17, 2.682280828342363e-17, -
2.0017019873396992e-17, 9.958428173144642e-18, 1.2050515717680968e-17, 7.56
6959212233535e-19, 2.3335861812346315e-18, -7.502037621165297e-18, -4.94774
6613447729e-18, 1.0568347471689677e-17], [-0.4070263380339401, 0.3463758772
8254415, 0.8451942450013658, 0.07752934752430495, -0.2628662719935718, 0.96
17122871839879, 0.7100577833337978, 0.12129480556104519, 0.6936177005173684
, 0.2348267744554594 … -9.889037906229451e-18, 2.622047247919259e-18, -7.
695124067665101e-18, -8.410583286614547e-18, -2.1939331562369414e-18, 7.425
433525461884e-18, -5.171447457153027e-18, -4.534073097546996e-18, 2.6749451
214653878e-18, 6.515653074300628e-18], [[9.386062205023244e-15, -4.88423356
06477305e-14, 2.4783640494181075e-14, -9.134217824700765e-14, -1.2532753935
369067e-13, -2.905600068212301e-14, -1.0607297407315322e-13, -2.81048742928
52464e-14, 1.1263429339764584e-13, -6.289312850636147e-14 … 1.53514573809
84269e-16, -1.5210716715968303e-17, 1.4707132667510832e-16, 1.5261911405250
162e-16, 5.14983556302751e-17, -1.1459053746662135e-16, 9.827163035211398e-
17, 1.0283040918437123e-16, -5.232313552412591e-17, -1.36483141000052e-16],
[-1.8692466230777779e-13, 9.15469059594766e-13, -4.60594660530642e-13, 4.1
746179245593343e-13, 1.4944934269377257e-12, 3.785606323061935e-13, 3.83076
4793541696e-13, 9.397197933933457e-13, -5.548437209094282e-13, 4.0280574210
35095e-14 … -5.439681208882951e-16, -9.218645762417292e-17, -4.4512401452
65388e-16, -5.6275134663729045e-16, -2.5356481198161243e-16, 3.872401331239
6145e-16, -3.5168591933052875e-16, -3.611009240577747e-16, 1.78856862282501
e-16, 4.482995952563703e-16], [3.9012459418257586e-13, -8.343492067859798e-
13, 5.167106523695732e-13, -3.6629315161340336e-13, -1.517012437366762e-12,
-3.811557765514476e-13, -2.9997585540220074e-13, -9.40392775349287e-13, 4.
749382457606865e-13, 8.171012041420787e-14 … 3.444608842721769e-16, -1.00
77826041643763e-16, 5.412744014614547e-16, 4.0915815269803087e-16, 1.545957
709531198e-16, -3.4526222401182245e-16, 2.85007359937849e-16, 3.87731089835
4694e-16, -9.449776717427846e-17, -4.696434373674202e-16]], [2.123669496577
6833e-14, 3.381368731235518e-14, -3.6303505865752095e-15, 6.531133331788356
e-16, 1.778673015357824e-14, 4.809022466987759e-15, 7.661013900297595e-16,
6.639508310556239e-15, -1.9053126062987657e-15, 2.184399413408555e-14 … 7
.598888605452412e-18, 1.2757594009501252e-17, -8.826207393275526e-18, 4.439
125856075106e-18, 3.0360799657211395e-18, 4.022700897981494e-18, 8.18635266
8146686e-19, -2.3153554916759226e-18, -4.62164637360465e-18, 3.610753366622
04e-18], [1.2906031895338056e-15, 8.232145277204604e-16, 2.348945481891979e
-16, -1.3324294022253296e-16, -1.2684441455275718e-16, 8.010102900417155e-1
8, -3.3564836582100555e-16, 8.015149855802235e-16, 2.2936715845989397e-16,
1.8333607647697663e-16 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
], [1.2906031895338056e-15, 8.232145277204604e-16, 2.348945481891979e-16, -
1.3324294022253296e-16, -1.2684441455275718e-16, 8.010102900417155e-18, -3.
3564836582100555e-16, 8.015149855802235e-16, 2.2936715845989397e-16, 1.8333
607647697663e-16 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.
0 0.0 … 0.0 0.0; -0.06749874783088496 0.0 … 0.0 0.0; … ; 0.1474075706760226
1 -0.014881671786251677 … -0.1339375454791798 0.0; 0.18026276833516747 -0.0
15531965291586068 … -0.26068378372815487 -0.04524653157147466], [44.4452689
3323062, -88.89053786646124, -70.97876402700659, 378.45082256176215, 487.74
71671050459, 0.0, 0.0, 0.0], [[-4.321600954866568e-16, 1.0952512439816114e-
14, -4.696656028334887e-15, -1.694535555257581e-14, 3.568023918253452e-17,
1.2603761069779317e-15, -1.0694302860637115e-14, -4.5451209441398014e-15, 1
.1702580489259402e-14, 1.8357290830421333e-15 … 9.576793472998238e-18, -1
.9975583814549697e-18, 8.222036548735515e-18, 8.566705503227287e-18, 2.5061
775894628448e-18, -7.260773375126616e-18, 5.483691890384868e-18, 5.15856196
4009476e-18, -2.6749451214665453e-18, -7.140141940761193e-18], [-2.94261095
35535553e-16, -2.2177651126087617e-14, 8.947092805612094e-15, 5.36682787249
31025e-14, 1.5061294423686367e-14, 2.1091847791601113e-17, 2.94937813646112
4e-14, 3.1525777463924475e-14, -3.550576083783233e-14, -1.1440687785304999e
-14 … -2.0168381353947272e-17, 3.370627896437477e-18, -1.6717286976450556
e-17, -1.6821166573188644e-17, -4.54398852900785e-18, 1.44751979672401e-17,
-1.1279628213975061e-17, -1.0941612794470262e-17, 4.725401376513223e-18, 1
.4280283881544312e-17], [2.941541257377514e-14, -8.898360967119148e-15, 1.7
81250326426387e-14, 4.008881112366321e-14, -5.617460571583075e-15, -4.65178
4161563113e-15, 3.275255267423148e-14, -9.67101346478391e-15, -3.1797639622
709055e-14, 2.4902605715266735e-14 … -9.26708037148287e-18, 2.14342906801
32e-18, -7.022444391625265e-18, -7.849569295090402e-18, -2.5499375798065263
e-18, 7.728478561727909e-18, -4.973510862607005e-18, -3.9055187708038115e-1
8, 1.777821681330829e-18, 5.661231974854308e-18], [3.580552840294026e-13, 2
.1269262446446e-13, 8.520032638229613e-14, 5.3654809657766936e-14, -3.63560
00535223226e-14, -1.4493558520851332e-14, 1.8187360267281872e-13, -3.142133
325623067e-13, -1.315971639642658e-13, 4.462806564675273e-13 … 3.75313559
7719469e-17, -1.1060351077149932e-17, 2.5851967395669513e-17, 2.48072511200
95602e-17, 8.221405395191752e-19, -1.9724000083381397e-17, 1.67826706929952
08e-17, 1.590271971504177e-17, -1.0320198079277485e-17, -2.1352032232863636
e-17], [-2.962435240230538e-13, 5.6704942944011563e-14, -1.6590285835137832
e-13, -3.089459277215168e-13, 9.063465294709664e-14, 4.9794717683039896e-14
, -2.4285814428194355e-13, 1.0820311270274979e-13, 2.2973259698213555e-13,
-2.5382818972601927e-13 … 3.9954174664279714e-18, -1.1412635025875723e-17
, -1.8169897789621774e-17, -1.466118242056976e-17, -1.661882364372066e-17,
9.379511242456788e-18, -1.0482233645738667e-17, -1.808654526787702e-17, 1.3
290107444023759e-18, 1.9888082929007654e-17], [7.697159060983839e-13, 2.430
818178855471e-13, 2.711897203775347e-13, 3.9594149981458374e-13, -1.0670680
9414033e-13, -6.143185963215169e-14, 5.002541799766833e-13, -5.104653879736
255e-13, -4.2336491185529676e-13, 8.507083549204702e-13 … 3.1209525433940
95e-17, 2.121427447750205e-19, 3.2915181059428356e-17, 3.077179732951689e-1
7, 1.0381207415489575e-17, -1.976899892758853e-17, 2.1354300296199416e-17,
2.6088175496574093e-17, -1.1887189557459983e-17, -3.156312547451784e-17], [
-3.4004768913594583e-13, -2.1178567645367307e-13, -7.709699737809603e-14, -
2.0680621516525294e-13, -9.308135505293326e-14, -8.770188320915065e-15, -2.
3149711981380125e-13, 1.0650725289302615e-13, 2.1831882249267685e-13, -3.79
4807869993647e-13 … 7.27277898306029e-18, 1.0855477853096067e-17, -8.2772
920546871e-18, 4.229546264897992e-18, 2.2741792006842815e-18, 3.49447806069
5453e-18, 9.24904709739629e-19, -1.9663207802035207e-18, -4.543124078631237
e-18, 3.1746504282771556e-18], [2.1236694965776833e-14, 3.381368731235518e-
14, -3.6303505865752095e-15, 6.531133331788356e-16, 1.778673015357824e-14,
4.809022466987759e-15, 7.661013900297595e-16, 6.639508310556239e-15, -1.905
3126062987657e-15, 2.184399413408555e-14 … 7.598888605452412e-18, 1.27575
94009501252e-17, -8.826207393275526e-18, 4.439125856075106e-18, 3.036079965
7211395e-18, 4.022700897981494e-18, 8.186352668146686e-19, -2.3153554916759
226e-18, -4.62164637360465e-18, 3.61075336662204e-18]], [4.777374552405044e
-17, 2.1955637710088361e-16, -8.229772860545203e-17, -1.5454229639719669e-1
6, -1.2242635595824158e-16, -1.172871630715824e-17, -4.769324775756736e-16,
1.8883883017134134e-16, 4.417775815588708e-16, -1.611704990389739e-16 …
-1.0493082634603865e-28, 6.645167050355498e-28, 4.646413842911092e-28, 1.27
51443494831893e-27, 9.311424465365188e-28, 1.0325988952628828e-28, 1.004122
0951051732e-29, 4.344158397438959e-28, 6.132900500027604e-28, 2.63590475908
61465e-29], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1
.295370655741827e-17 0.0 … 0.0 0.0; 0.0 -1.295370655741827e-17 … 0.0 0.0; …
; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-0.022499582610295006 0.0 … 0.0
0.0; 0.0 -0.022499582610295006 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 …
0.0 0.0], [-2.1236694965776833e-14, -3.381368731235518e-14, 3.6303505865752
095e-15, -6.531133331788356e-16, -1.778673015357824e-14, -4.809022466987759
e-15, -7.661013900297595e-16, -6.639508310556239e-15, 1.9053126062987657e-1
5, -2.184399413408555e-14 … -7.598888605452412e-18, -1.2757594009501252e-
17, 8.826207393275526e-18, -4.439125856075106e-18, -3.0360799657211395e-18,
-4.022700897981494e-18, -8.186352668146686e-19, 2.3153554916759226e-18, 4.
62164637360465e-18, -3.61075336662204e-18], [1.5093317297422589e-6, 2.51145
96809772756e-6, -1.9674625565356025e-7, 6.0612115547424e-8, 1.4084413011916
915e-6, 2.4514412732210834e-7, 4.47997370320566e-8, 5.92128696006411e-7, -1
.1249956856950135e-7, 1.7689925895652181e-6 … 7.598888605452412e-10, 1.27
57594009501253e-9, -8.826207393275526e-10, 4.439125856075106e-10, 3.0360799
657211394e-10, 4.0227008979814936e-10, 8.186352668146685e-11, -2.3153554916
759226e-10, -4.6216463736046504e-10, 3.61075336662204e-10], [7.107187498688
301e7, 7.427346381296942e7, 5.4194836273145854e7, 9.280489689655007e7, 7.91
849479376301e7, 5.097587482797932e7, 5.84775561238917e7, 8.918261237281352e
7, 5.904520245002864e7, 8.098301888870083e7 … 1.0e8, 1.0e8, 1.0e8, 1.0e8,
1.0e8, 1.0e8, 1.0e8, 1.0e8, 1.0e8, 1.0e8], OrdinaryDiffEqRosenbrock.RodasT
ableau{Float64, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0.0; … ; -7.5028
46399306121 2.561846144803919 … 0.0 0.0; -7.502846399306121 2.5618461448039
19 … 1.0 0.0], [0.0 0.0 … 0.0 0.0; -14.155112264123755 0.0 … 0.0 0.0; … ; 3
0.91273214028599 -3.1208243349937974 … -28.087943162872662 0.0; 37.80277123
390563 -3.2571969029072276 … -54.66780262877968 -9.48861652309627], 0.21193
756319429014, [0.0, 0.6358126895828704, 0.4095798393397535, 0.9769306725060
716, 0.4288403609558664, 1.0, 1.0, 1.0], [0.21193756319429014, -0.423875126
38858027, -0.3384627126235924, 1.8046452872882734, 2.325825639765069, 0.0,
0.0, 0.0], [25.948786856663858 -2.5579724845846235 … 0.4272876194431874 -0.
17202221070155493; -9.91568850695171 -0.9689944594115154 … -6.7890403034198
74 -6.710236069923372; 11.419903575922262 2.8879645146136994 … -0.155826842
82751913 4.883087185713722]), SciMLBase.TimeGradientWrapper{true, SciMLBase
.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox
#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##We
aveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Not
hing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters
}(SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##W
eaveSandBox#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Ma
in.var"##WeaveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBS
ERVED), Nothing, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fe
kete_rhs!, [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.
0 0.0 … 0.0 0.0], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac
!, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing,
nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [
-0.4070263380339401, 0.34637587728254415, 0.8451942450013658, 0.07752934752
430495, -0.2628662719935718, 0.9617122871839879, 0.7100577833337978, 0.1212
9480556104519, 0.6936177005173684, 0.2348267744554594 … -9.88903790622945
1e-18, 2.622047247919259e-18, -7.695124067665101e-18, -8.410583286614547e-1
8, -2.1939331562369414e-18, 7.425433525461884e-18, -5.171447457153027e-18,
-4.534073097546996e-18, 2.6749451214653878e-18, 6.515653074300628e-18], Sci
MLBase.NullParameters()), SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".f
ekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSand
Box#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, N
othing, Nothing, Nothing}, Float64, SciMLBase.NullParameters}(SciMLBase.ODE
Function{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225
".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveS
andBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing
, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".fekete_rhs!, [1.0
0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0
], nothing, nothing, Main.var"##WeaveSandBox#225".fekete_jac!, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLB
ase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), 0.0, SciMLBase.N
ullParameters()), [3.6213564458799175e-16, 3.6221725152666496e-16, 2.067002
1884581203e-18, -2.37468430715712e-16, -1.2552987882050396e-17, 2.715232501
8735023e-17, -5.28398222109059e-16, 7.803452132384372e-16, 4.16368617645378
8e-16, -1.7225778132583879e-16 … -2.889696103437719e-28, -4.1654320985998
24e-28, -8.767254885508518e-28, -6.7467328919027035e-28, -5.269344327843477
e-28, -6.306110935506014e-28, -7.02480636099311e-28, -4.4373425918681914e-2
9, -8.87271303147333e-28, -8.560866454878149e-28], LinearSolve.LinearCache{
Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters
, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{Line
arAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRComp
actWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64
}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{F
loat64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearA
lgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgeb
ra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matr
ix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32
}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Ma
trix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing,
Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPrecond
itioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Di
agonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciM
LLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sil
ent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLo
gging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.
Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciM
LLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint
{Missing}}([-0.022499582610295006 0.0 … 0.0 0.0; 0.0 -0.022499582610295006
… 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [3.6213564458799175e-
16, 3.6221725152666496e-16, 2.0670021884581203e-18, -2.37468430715712e-16,
-1.2552987882050396e-17, 2.7152325018735023e-17, -5.28398222109059e-16, 7.8
03452132384372e-16, 4.163686176453788e-16, -1.7225778132583879e-16 … -2.8
89696103437719e-28, -4.165432098599824e-28, -8.767254885508518e-28, -6.7467
328919027035e-28, -5.269344327843477e-28, -6.306110935506014e-28, -7.024806
36099311e-28, -4.4373425918681914e-29, -8.87271303147333e-28, -8.5608664548
78149e-28], [-2.1236694965776833e-14, -3.381368731235518e-14, 3.63035058657
52095e-15, -6.531133331788356e-16, -1.778673015357824e-14, -4.8090224669877
59e-15, -7.661013900297595e-16, -6.639508310556239e-15, 1.9053126062987657e
-15, -2.184399413408555e-14 … -7.598888605452412e-18, -1.2757594009501252
e-17, 8.826207393275526e-18, -4.439125856075106e-18, -3.0360799657211395e-1
8, -4.022700897981494e-18, -8.186352668146686e-19, 2.3153554916759226e-18,
4.62164637360465e-18, -3.61075336662204e-18], SciMLBase.NullParameters(), L
inearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmChoice.LUFactori
zation, true, false), LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{
Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64
, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vect
or{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Fl
oat64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{F
loat64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}},
Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefV
alue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}
, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Matrix{Float64}, Vector{Float64}}(LinearAlgebra.LU{Float64, Matrix{Flo
at64}, Vector{Int64}}([-4.582883262809606 0.06974750541719536 … 0.0 0.0; -0
.015219132021799656 -5.19852205414331 … 0.0 0.0; … ; -0.0 -0.0 … -2.5088147
139218444 1.0240633395676112e-15; -0.0 -0.0 … -4.342063853026781e-16 -2.201
952878147276], [61, 62, 63, 64, 65, 66, 67, 68, 69, 70 … 151, 152, 153, 1
54, 155, 156, 157, 158, 159, 160], 0), LinearAlgebra.QRCompactWY{Float64, M
atrix{Float64}, Matrix{Float64}}(Matrix{Float64}(undef, 0, 0), Matrix{Float
64}(undef, 0, 0)), nothing, nothing, nothing, nothing, nothing, nothing, (L
inearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(un
def, 0, 0), Int64[], 0), Int64[]), (LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), not
hing, nothing, nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}
, Vector{Float64}}(Matrix{Float64}(undef, 0, 0), Float64[], Matrix{Float64}
(undef, 0, 0)), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}(Matrix{Flo
at64}(undef, 0, 0), 'U', 0), LinearAlgebra.Cholesky{Float64, Matrix{Float64
}}([0.7155106697363188;;], 'U', 0), (LinearAlgebra.LU{Float64, Matrix{Float
64}, Vector{Int32}}(Matrix{Float64}(undef, 0, 0), Int32[], 0), Base.RefValu
e{Int32}(387486256)), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{In
t64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Base.RefValue{Int64}(14026
1301038640)), LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Floa
t64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Float64[], Int64[]), not
hing, nothing, nothing, nothing, nothing, [-0.022499582610295006 0.0 … 0.0
0.0; 0.0 -0.022499582610295006 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 …
0.0 0.0], [6.94218969599094e-310, 0.0, 6.942161289874e-310, 0.0, 6.94266297
327375e-310, 5.0e-324, 6.94266297327375e-310, 5.0e-324, 6.9421984342984e-31
0, 0.0 … 6.94215680299034e-310, 6.9421568035437e-310, 6.94215680602667e-3
10, 6.9421568061808e-310, 6.94266725940904e-310, 6.9426572602496e-310, 6.94
26572602322e-310, 6.9426572602148e-310, 0.0, 0.0], true, true, false), fals
e, true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vect
or{Float64}}}([7.107187498688301e7 0.0 … 0.0 0.0; 0.0 7.427346381296942e7 …
0.0 0.0; … ; 0.0 0.0 … 1.0e8 0.0; 0.0 0.0 … 0.0 1.0e8]), [7.10718749868830
1e7 0.0 … 0.0 0.0; 0.0 7.427346381296942e7 … 0.0 0.0; … ; 0.0 0.0 … 1.0e8 0
.0; 0.0 0.0 … 0.0 1.0e8], 1.4901161193847656e-8, 1.4901161193847656e-8, 160
, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, Sci
MLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, Sci
MLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging
.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}(Sci
MLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogg
ing.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Si
lent(), SciMLLogging.Silent(), SciMLLogging.WarnLevel(), SciMLLogging.WarnL
evel(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent()
, SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent()), Lin
earSolve.OperatorAssumptions{Bool}(true, LinearSolve.OperatorCondition.IllC
onditioned), LinearSolve.LinearSolveAdjoint{Missing}(missing)), (nothing, n
othing), (DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativ
ePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true,
SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".fekete_rhs!)
, Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#225".fe
kete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Not
hing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}
, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}},
Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".feket
e_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSandBox#
225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothi
ng, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{F
loat64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeCo
nfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(4.777374552405044e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(2.1955637710088361e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(-8.229772860545203e-17,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.5454229639719669e-16,0.0),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.22426355958
24158e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(-1.172871630715824e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(-4.769324775756736e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(1.8883883017134134e-16,0.0), Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.417775815588708e-16,0.0),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.61170499038
9739e-16,0.0) … Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(-1.0493082634603865e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(6.645167050355498e-28,0.0), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(4.646413842911092e-28,0.0), Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.2751443494831893e-27,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.3114244653
65188e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(1.0325988952628828e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(1.0041220951051732e-29,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(4.344158397438959e-28,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.132900500027604e-28,0.0), D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.6359047590861
465e-29,0.0)]), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoA
rgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".f
ekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##WeaveSand
Box#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, N
othing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vect
or{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivat
iveConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase
.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox
#225".fekete_rhs!), Matrix{Float64}, Nothing, Nothing, typeof(Main.var"##We
aveSandBox#225".fekete_jac!), Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Not
hing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullParameters
}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.D
erivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}(4.777374552405044e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(2.1955637710088361e-16,0.0), Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.229772860545203e-17,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.5454229639719669
e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.
2242635595824158e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(-1.172871630715824e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(-4.769324775756736e-16,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.8883883017134134e-16,0.0), Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.417775815588708
e-16,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.
611704990389739e-16,0.0) … Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(-1.0493082634603865e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(6.645167050355498e-28,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.646413842911092e-28,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.27514434948318
93e-27,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9
.311424465365188e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(1.0325988952628828e-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(1.0041220951051732e-29,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.344158397438959e-28,0.0), Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.132900500027604e
-28,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.63
59047590861465e-29,0.0)]), ())), 1.0e-8, OrdinaryDiffEqRosenbrock.Rodas5P{0
, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:fo
rward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeo
f(OrdinaryDiffEqCore.trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFAULT
_PRECS, OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_lim
iter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}())), OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore
.trivial_limiter!, 3), Bool[1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 0, 0, 0, 0, 0,
0, 0, 0, 0, 0], false), true, 0, SciMLBase.DEStats(86366, 0, 9596, 76768,
9596, 0, 0, 0, 0, 0, 9596, 0, 0.0), nothing, SciMLBase.ReturnCode.Success,
nothing, nothing, nothing)
SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothin
g, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing, SciMLBase.ODE
Problem{Vector{Float64}, Tuple{Float64, Float64}, true, ModelingToolkit.MTK
Parameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vecto
r{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.ODEFunction{true
, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrappe
r{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Ve
ctor{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tu
ple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple
{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing,
Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, T
uple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionW
rapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit
.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, V
ector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false},
LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, N
othing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.Non
linearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamet
ers{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float6
4}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true,
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd
93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem},
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.
Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(M
odelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{t
ypeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInter
face.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapp
er{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144,
0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d
, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_s
plit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.
SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit
.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{
false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd
9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Not
hing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Modeling
Toolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mo
delingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCon
structorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea
5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), N
othing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFuncti
on{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunctio
n{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generated
FunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30535
1dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0
xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Modelin
gToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunc
tion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf52
7ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothi
ng}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingI
nterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, N
othing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mult
ipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}
}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciMLBase
.StandardODEProblem}, OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.AutoForwa
rdDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing,
typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, nothing,
typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.triv
ial_limiter!)}, OrdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFunction{
true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWr
apper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}
, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}
, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArray
sCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, T
uple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Noth
ing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameter
s{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64
}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Funct
ionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToo
lkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, fals
e}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem
}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase
.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPar
ameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Fl
oat64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{t
rue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79
fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11
cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyst
em}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, B
ase.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, type
of(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFuncti
on{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingI
nterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionW
rapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b1
44, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9f
da4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpm
ap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysC
ore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToo
lkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrap
per{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Mode
lingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializepro
b{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.
PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{t
rue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6
), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFu
nction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFun
ction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Gener
atedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x3
05351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebad
a, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mod
elingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObserved
Function{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), N
othing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndex
ingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.
MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbo
licIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciML
Structures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{t
rue}}, Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Ve
ctor{Float64}}}, Nothing, OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{F
loat64}, Vector{Float64}, Float64, Vector{Float64}, Matrix{Float64}, Matrix
{Float64}, OrdinaryDiffEqRosenbrock.RodasTableau{Float64, Float64}, SciMLBa
se.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpec
ialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrap
pers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Model
ingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Fl
oat64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, F
unctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Flo
at64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}
}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tupl
e{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{Stati
cArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tupl
e{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagon
al{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingTool
kit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingTool
kit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresPr
oblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64},
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{
}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpeci
alize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1
a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Not
hing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.
ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingTo
olkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{
}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.updat
e_initializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typ
eof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependent
ObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1
a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingTo
olkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplica
tor{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolk
it.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c,
0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7339649
3, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tu
ple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initializati
onMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_
getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{t
ypeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Gen
eratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0
xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679
dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}
}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity),
SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingIn
terface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2,
3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xa
a6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580a
d, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU
0{SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit
.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0
xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba,
0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndex
ingInterface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotT
imeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingTo
olkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{S
ymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.Set
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{
Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Flo
at64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}
}}, SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.
AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{Func
tionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64
}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Floa
t64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, V
ector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVecto
r{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{},
Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vecto
r{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tupl
e{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothi
ng, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParamete
rs{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float6
4}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebr
a.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Mode
lingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, Mode
lingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastS
quaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{F
loat64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}
, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.F
ullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing},
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd58860
5e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Modeling
Toolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, Mo
delingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol
, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolk
it.update_initializeprob!), ComposedFunction{ComposedFunction{typeof(identi
ty), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeInd
ependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8
, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{Mo
delingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructo
rApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, Model
ingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xa
a2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Re
turns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Init
ializationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolki
t.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorAppl
icator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToo
lkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634
867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}},
Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns
{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(id
entity), SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIn
dexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrap
per{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b958
5b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0
x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.Get
UpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0ba
b07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1
50967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, Symbo
licIndexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.Ind
exerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{Model
ingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, Mo
delingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{
Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInter
face.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing},
Float64, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Flo
at64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}
}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float6
4}, SciMLBase.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.
DefaultLinearSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{I
nt64}}, LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebr
a.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{Linear
Algebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothin
g, Nothing, Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, V
ector{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAl
gebra.Cholesky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, M
atrix{Float64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.
LU{Float64, Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearA
lgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}},
Nothing, Nothing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float
64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{
Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Line
arSolve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogg
ing.WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silen
t, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, Li
nearSolve.LinearSolveAdjoint{Missing}}, Tuple{DifferentiationInterfaceForwa
rdDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}, DifferentiationInterfaceF
orwardDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianCo
nfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tu
ple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}}, Tuple{Differentiatio
nInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.Ti
meGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecializ
e, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.
FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingTo
olkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Functi
onWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64,
Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Fl
oat64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVecto
r{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{},
Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArra
ysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{},
Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Fl
oat64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.O
bservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.O
DESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem
{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, Stat
icArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tu
ple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize
, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a8489
46, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obser
vedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit
.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tu
ple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_ini
tializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(M
odelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObser
vedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b)
, Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit
.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{t
ypeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca
4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0x
e5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}
}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMet
adata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_gette
r#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof
(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Generate
dFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba
7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab,
0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{Stati
cArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Re
turns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Symb
olicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterfa
ce.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b99
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x
1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{Sym
bolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba8
4ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28
b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingIn
terface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimese
ries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit
.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Symbol
icIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}},
SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float
64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64,
Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, V
ector{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.Derivative
Config{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forwa
rdDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64
, 1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgD
erivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFuncti
on{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrapper
sWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float
64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedV
ector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tupl
e{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{V
ector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticAr
raysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}
, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{N
othing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParame
ters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Floa
t64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Fu
nctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Modeling
Toolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, f
alse}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESys
tem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLB
ase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTK
Parameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunctio
n{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{
(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7
c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0
x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearS
ystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}
, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, t
ypeof(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFun
ction{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexi
ngInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFuncti
onWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c
4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3
f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initpro
bpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArra
ysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{Modeling
Toolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedW
rapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing},
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd36
8), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, M
odelingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitialize
prob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolk
it.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrappe
r{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408
bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, Compose
dFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentObserved
Function{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003,
0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aae
bada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}},
ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObser
vedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d)
, Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIn
dexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetP
arameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterfa
ce.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Sy
mbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{Sc
iMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Va
l{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticAr
raysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}
, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1,
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}},
Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqR
osenbrock.Rodas5P{1, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PR
ECS), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_lim
iter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEq
Core.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVe
ctor}, SciMLBase.DEStats, Nothing, Nothing, Nothing, Nothing}([[0.099888948
19708992, 0.3826834323650898, 0.9109909992588205, -0.40673664307580015, 0.5
146184802429882, -0.40673664307580015, -0.39637251901583237, -0.40673664307
580015, -0.9109909992588205, -0.40673664307580015 … -2.9842341509894617,
1.092262886230266, -1.200608032206675, 4.175891999514561, 4.683210670492554
, -2.842932844578383, -8.372194075591601, -7.485794633780495, -1.0013590596
682649, 6.169954996728397]], nothing, nothing, [0.0], [[[0.0998889481970899
2, 0.3826834323650898, 0.9109909992588205, -0.40673664307580015, 0.51461848
02429882, -0.40673664307580015, -0.39637251901583237, -0.40673664307580015,
-0.9109909992588205, -0.40673664307580015 … -2.9842341509894617, 1.09226
2886230266, -1.200608032206675, 4.175891999514561, 4.683210670492554, -2.84
2932844578383, -8.372194075591601, -7.485794633780495, -1.0013590596682649,
6.169954996728397]]], nothing, SciMLBase.ODEProblem{Vector{Float64}, Tuple
{Float64, Float64}, true, ModelingToolkit.MTKParameters{StaticArraysCore.Si
zedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Fu
nctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Funct
ionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit
.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, V
ector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWra
ppers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vect
or{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64
}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vect
or{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tupl
e{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple
{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64
, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESys
tem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vect
or{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArr
aysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}
, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Mod
elingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0
x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters_
__), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFu
nctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonl
inearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}
, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initiali
zeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(Modeli
ngToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObservedFu
nction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf
f46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Not
hing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"
#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof
(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Generat
edFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f
8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363
400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Re
turns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata
{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806
"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(iden
tity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414,
0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3
e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArra
ysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns
{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicI
ndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.Co
ntinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ff
c4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{Symbolic
IndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Generated
FunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3,
0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb
8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterfa
ce.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries,
Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetI
nitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicInd
exingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterI
ndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symb
olicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Base.Pairs{Symbol
, Union{}, Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}(SciMLBase
.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.Funct
ionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Ve
ctor{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysC
ore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tup
le{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothin
g, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameter
s{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64
}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.Functio
nWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit
.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, V
ector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionW
rappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Ve
ctor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Forwa
rdDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64
, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingTool
kit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitD
ata{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingT
oolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonlin
earFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFuncti
onWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420
c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe
783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{B
ool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.
NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}
, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, N
othing}, typeof(ModelingToolkit.update_initializeprob!), ComposedFunction{C
omposedFunction{typeof(identity), typeof(ModelingToolkit.safe_float)}, Symb
olicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Gener
atedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c5
79f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2
d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.va
r"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunctio
n{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit
.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, tru
e), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mt
k_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc,
0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tupl
e{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.Reconstruct
Initializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Mod
elingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Obse
rvedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654
d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float6
4, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}
}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDepende
ntObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries, Modeling
Toolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x
2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}},
true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepe
ndentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true)
, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0
x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{
SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInte
rface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndex
ingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHook
Wrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real
}}}}}}, Val{true}}, Nothing}(FunctionWrappersWrappers.FunctionWrappersWrapp
er{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, V
ector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, T
uple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Fl
oat64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tupl
e{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing
, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}(
(FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Fl
oat64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}},
Float64}}(Ptr{Nothing} @0x00007fcaf39cdb50, Ptr{Nothing} @0x00007fcb5c86c0
18, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(
2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9,
0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3
bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{ModelingToolkit.G
eneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f,
0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x885
4662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(Modeling
Toolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x
3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}(
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6
, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Void{ModelingToo
lkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb
2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}),
FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Fl
oat64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{
}}, Float64}}(Ptr{Nothing} @0x00007fcaf3a212b0, Ptr{Nothing} @0x00007fcb5c8
6c038, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e
9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7
ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{ModelingToolki
t.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb278
1f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(Model
ingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameter
s___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing
}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b
), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3b
ee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Void{Modeling
Toolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x
3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}
), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vecto
r{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, F
loat64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple
{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a37770, Ptr{Nothing} @0x00007fcb
69e70010, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunctionWra
pper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b0
59e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54,
0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{ModelingToo
lkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb
2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(Mo
delingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf3
16, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Noth
ing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3
f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7e
a3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Void{Model
ingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameter
s___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing
}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector
{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{},
Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a8adc0, Ptr{Nothing} @0x000
07fcb69e70028, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFuncti
onWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0
x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265
c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}
}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x6
6acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0),
Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0x
ab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54,
0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Void{
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66ac
f316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), No
thing}}}))), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0;
0.0 0.0 … 0.0 0.0], nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.ODESystem}(Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), Dict{Any, Any}(), false, false, Model
ingToolkit, false, true), nothing, Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), SciMLBase.OverrideInitData{SciMLBase.
NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPara
meters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tr
ue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79f
c2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11c
afd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyste
m}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeo
f(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunctio
n{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingIn
terface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWr
apper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b14
4, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fd
a4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpma
p_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Model
ingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob
{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.P
ConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tr
ue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6)
, Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFun
ction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunc
tion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada
, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mode
lingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), No
thing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexi
ngInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}
, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.M
ultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tr
ue}}(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Modeling
Toolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonli
nearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunct
ionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x42
0c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0x
e783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{
Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit
.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64
}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing,
Nothing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x27
3d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
dedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Linea
rAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunct
ionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonline
arSystem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0
x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41,
0x11cafd93, 0xd588605e), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49
901f8, 0x420c0f66, 0x7c79fc2e), Nothing}(nothing), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf
71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}(nothing)),
LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Ob
servedFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), Dict{Any, Any}(Any[p20_1ˍtt(t), p5_1
ˍtt(t), p9_1ˍt(t), p8_1ˍtt(t), p3_1ˍtt(t), p18_1ˍt(t), p15_1ˍtt(t), p18_1ˍt
t(t), p6_1ˍt(t), p2_1ˍtt(t) … p19_1ˍt(t), p10_1ˍtt(t), p4_1ˍtt(t), p3_1ˍt
(t), p5_1ˍt(t), p11_1ˍtt(t), p4_1ˍt(t), p16_1ˍtt(t), p7_1ˍt(t), p1_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa620
2ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0xca74876d, 0x618456e2), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xa6202ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0x
ca74876d, 0x618456e2), Nothing}(nothing)), SymbolicUtils.BasicSymbolic{Real
}[p10_2(t), p10_3(t), p11_2(t), p11_3(t), p12_2(t), p12_3(t), p13_2(t), p13
_3(t), p14_2(t), p14_3(t) … p1_1ˍtt(t), p20_1ˍtt(t), p2_1ˍtt(t), p3_1ˍtt(
t), p4_1ˍtt(t), p5_1ˍtt(t), p6_1ˍtt(t), p7_1ˍtt(t), p8_1ˍtt(t), p9_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46
afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x
9cc206c8, 0xece1a91b), Nothing}(nothing))), false, false, ModelingToolkit,
false, true), nothing, Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], nothin
g), [0.0, 0.0, -5.033861372906908, 3.484319431960476], ModelingToolkit.MTKP
arameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.2759922279796341, 0.0, 0.0, 0.0,
0.0, 0.0, 0.3826834323650898], Float64[], (), (), (), ()), nothing, nothin
g, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.
update_initializeprob!, identity ∘ ModelingToolkit.safe_float ∘ SymbolicInd
exingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0x
f0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}(ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0
xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}(RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e
532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}(nothing), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}
(nothing))), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.v
ar"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typ
eof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f
54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5
363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}},
Returns{Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tu
ple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Com
posedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mod
elingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0
xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f,
0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}},
Returns{Tuple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}(identity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca
4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0x
e5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}(ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xc
a4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0
xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}(RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22
ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}(nothing), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368)
, Nothing}(nothing))), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{
Tuple{}}(())))), ModelingToolkit.InitializationMetadata{ModelingToolkit.Rec
onstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc8808
02d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0
x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Tim
eDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c05
4df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), No
thing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Ti
meIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a
126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParameter
sGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicInde
xingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructu
res.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symbo
licIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}}}}}(Dict{Any, Any}(p4_3(t) => Initial(p4_3(t)), p16_2(t) => Init
ial(p16_2(t)), p8_3(t) => Initial(p8_3(t)), p11_2(t) => Initial(p11_2(t)),
p2_3(t) => Initial(p2_3(t)), p8_1(t) => Initial(p8_1(t)), p13_3(t) => Initi
al(p13_3(t)), q12_2(t) => Initial(q12_2(t)), lam8(t) => Initial(lam8(t)), p
17_1(t) => Initial(p17_1(t))…), Dict{Any, Any}(Initial(q8_2(t)) => 0.0, Ini
tial(q1_1ˍtt(t)) => false, Initial(p17_1ˍtt(t)) => false, Initial(q2_2ˍt(t)
) => false, Initial(q9_1ˍtt(t)) => false, Initial(q13_3ˍt(t)) => false, Ini
tial(p11_2ˍt(t)) => false, Initial(p10_2ˍt(t)) => false, Initial(p6_2ˍt(t))
=> false, Initial(p13_2(t)) => -0.39637251901583237…), Dict{Any, Any}(), S
ymbolics.Equation[], true, ModelingToolkit.ReconstructInitializeprob{Modeli
ngToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Mod
elingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54
b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothi
ng}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}},
Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{t
ypeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Sy
mbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd,
0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b
065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}(ModelingTool
kit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorAp
plicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x6
34867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}
, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Retur
ns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}(identity) ∘ ModelingToolkit.ObservedWrappe
r{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408
bb6), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d
, 0x14408bb6), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414,
0x413b347f, 0xc880802d), Nothing}(nothing), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679da
b, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}(nothing))), Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}(Float64[])
, Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tuple{}}(()))), ident
ity ∘ SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndex
ingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0
, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64
b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}(SymbolicIndexingInterface
.ContinuousTimeseries(), ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b99
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x
1b4ffc4d, 0x9383e45b), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}(nothing), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}(nothin
g)))), ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepende
ntObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothi
ng}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00
c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Sym
bolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterfa
ce.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initial
s, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 1, 1, 1, 1, 1,
1, 1, 1, 1, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c
, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}
(ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7
c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}
(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Not
hing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}(nothing))), SymbolicIndexingInterface.Multiple
ParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Sym
bolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
[SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}(SciMLStructures.Initials(), 267, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 380, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 86, false)), SymbolicIndexingInterface.GetP
arameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLSt
ructures.Initials(), 92, false)), SymbolicIndexingInterface.GetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.In
itials(), 359, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
206, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 10, false)
), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}(SciMLStructures.Initials(), 76, false)), Symbolic
IndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 38, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 172, false)) … SymbolicIndexingInterface.
GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(Sci
MLStructures.Initials(), 27, false)), SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 259, false)), SymbolicIndexingInterface.GetParameterIndex{Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials
(), 254, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 36, fa
lse)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, false)), Symb
olicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 237, false)), SymbolicIndexi
ngInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 215, false)), SymbolicIndexingInterfac
e.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 117, false)), SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStruct
ures.Initials(), 45, false)), SymbolicIndexingInterface.GetParameterIndex{M
odelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initia
ls(), 294, false))], nothing)), ModelingToolkit.SetInitialUnknowns{Symbolic
IndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}}}}(SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}}}(SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 267, false)), Initial(p10_2(t))), SymbolicIndexingInterface.P
arameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicS
ymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 380, fals
e)), Initial(p10_3(t))), SymbolicIndexingInterface.ParameterHookWrapper{Sym
bolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 86, false)), Initial(p11_2(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 92, false)), Initial(p11_3(t))), SymbolicIndexingInterfa
ce.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Ba
sicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 359,
false)), Initial(p12_2(t))), SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 206, false)), Initial(p12_3(
t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciM
LStructures.Initials(), 10, false)), Initial(p13_2(t))), SymbolicIndexingIn
terface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUti
ls.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
76, false)), Initial(p13_3(t))), SymbolicIndexingInterface.ParameterHookWra
pper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(
SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}(SciMLStructures.Initials(), 38, false)), Initial(p14
_2(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterfac
e.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 172, false)), Initial(p14_3(t))) … SymbolicInd
exingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterI
ndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symb
olicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initi
als(), 27, false)), Initial(p1_1ˍtt(t))), SymbolicIndexingInterface.Paramet
erHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymboli
c{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 259, false)), I
nitial(p20_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 254, false)), Initial(p2_1ˍtt(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 36, false)), Initial(p3_1ˍtt(t))), SymbolicIndexingInter
face.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Model
ingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.
BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23,
false)), Initial(p4_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrap
per{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(S
ymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}(SciMLStructures.Initials(), 237, false)), Initial(p5_
1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingI
nterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
(SciMLStructures.Initials(), 215, false)), Initial(p6_1ˍtt(t))), SymbolicIn
dexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sym
bolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 117, false)), Initial(p7_1ˍtt(t))), SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 45, false)),
Initial(p8_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 294, false)), Initial(p9_1ˍtt(t)))]
))), Val{true}()), nothing), [0.09988894819708992, 0.3826834323650898, 0.91
09909992588205, -0.40673664307580015, 0.5146184802429882, -0.40673664307580
015, -0.39637251901583237, -0.40673664307580015, -0.9109909992588205, -0.40
673664307580015 … -2.9842341509894617, 1.105580114328058, -1.200608032206
675, 4.175891999514561, 4.683210670492554, -2.842932844578383, -8.372194075
591601, -7.485794633780495, -1.0013590596682649, 6.169954996728397], (0.0,
1000.0), ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}
(Float64[], [0.0, -4.131607781650916, -2.895155231298144, 5.095430301225885
, 0.0, 0.0, 0.0, 0.0, 0.0, -0.39637251901583237 … 0.0, 0.0, 0.0, 0.275992
2279796341, 0.0, 8.49852065849122, 0.0, 0.0, 0.0, 0.3826834323650898], (),
(), (), ()), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), SciMLBa
se.StandardODEProblem()), OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.AutoF
orwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Noth
ing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, nothi
ng, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.
trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDiffE
qCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_limiter!, ADTypes.AutoFo
rwardDiff(chunksize=1, tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}())), OrdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFunction{true
, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrappe
r{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Ve
ctor{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tu
ple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple
{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing,
Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, T
uple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionW
rapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit
.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, V
ector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false},
LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, N
othing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.Non
linearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamet
ers{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float6
4}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true,
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd
93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem},
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.
Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(M
odelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{t
ypeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInter
face.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapp
er{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144,
0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d
, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_s
plit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.
SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit
.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{
false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd
9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Not
hing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Modeling
Toolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mo
delingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCon
structorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea
5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), N
othing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFuncti
on{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunctio
n{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generated
FunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30535
1dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0
xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Modelin
gToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunc
tion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf52
7ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothi
ng}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingI
nterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, N
othing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mult
ipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}
}, Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector
{Float64}}}, Nothing, OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float
64}, Vector{Float64}, Float64, Vector{Float64}, Matrix{Float64}, Matrix{Flo
at64}, OrdinaryDiffEqRosenbrock.RodasTableau{Float64, Float64}, SciMLBase.T
imeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpeciali
ze, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers
.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingT
oolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float6
4}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Funct
ionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64
, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, F
loat64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}
, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArr
aysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{},
Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{F
loat64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.
ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.
ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProble
m{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, T
uple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecializ
e, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848
946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing
}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obse
rvedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolki
t.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, T
uple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_in
itializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(
ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObse
rvedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameter
s___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b
), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolki
t.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64,
Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{
typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xc
a4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0
xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{
}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMe
tadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_gett
er#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeo
f(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcb
a7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab,
0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{Stat
icArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, R
eturns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Sym
bolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterf
ace.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9
926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0
x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{Sy
mbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Gen
eratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba
84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x2
8b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingI
nterface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimes
eries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolki
t.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Symbo
licIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Floa
t64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64
, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}},
SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Auto
Specialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{Function
Wrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, M
odelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vecto
r{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}
}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vecto
r{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tup
le{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing,
Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Di
agonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Modeling
Toolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, Modeling
Toolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquar
esProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float
64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullS
pecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e),
Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingTool
kit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, Modeli
ngToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Un
ion{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.u
pdate_initializeprob!), ComposedFunction{ComposedFunction{typeof(identity),
typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndepen
dentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0x
ece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{Modeli
ngToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, F
loat64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApp
licator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d6
20c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x733
96493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Return
s{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initiali
zationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.va
r"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicat
or{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit
.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e
1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa
8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Retu
rns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tup
le{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identi
ty), SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexi
ngInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0,
0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b
580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpda
tedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToo
lkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07f
e, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x15096
7ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicI
ndexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.Indexer
NotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, Modeli
ngToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vect
or{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface
.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Flo
at64, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64
, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}},
LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64},
SciMLBase.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.Defa
ultLinearSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU
{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlge
bra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, N
othing, Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vecto
r{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebr
a.Cholesky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matri
x{Float64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{F
loat64, Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgeb
ra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Not
hing, Nothing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}
, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Floa
t64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSo
lve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.
Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciM
LLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.
WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, S
ciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, Linear
Solve.LinearSolveAdjoint{Missing}}, Tuple{DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1}}}}, Tuple{}}, DifferentiationInterfaceForwa
rdDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}}, Tuple{DifferentiationInt
erfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGr
adientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, F
unctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Func
tionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWr
appers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float6
4}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vec
tor{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tup
le{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Fl
oat64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tupl
e{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float6
4, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obser
vedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESy
stem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vec
tor{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticAr
raysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{
}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Mo
delingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946,
0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, L
inearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedF
unctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Non
linearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{
}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initial
izeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(Model
ingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
ff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), No
thing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var
"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vecto
r{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeo
f(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Genera
tedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54
f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe536
3400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, R
eturns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadat
a{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#80
6"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ide
ntity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFun
ctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414
, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a
3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArr
aysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Return
s{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Symbolic
IndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.C
ontinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4f
fc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{Symboli
cIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Generate
dFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3
, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4eb
b8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterf
ace.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries
, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.Set
InitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIn
dexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sym
bolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vecto
r{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConf
ig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDeriv
ativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{t
rue, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWra
pper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64},
Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVecto
r{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{},
Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vecto
r{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothi
ng, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Functi
onWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingTool
kit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}
, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false
}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}
, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.
NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPara
meters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tr
ue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79f
c2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11c
afd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyste
m}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeo
f(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunctio
n{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingIn
terface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWr
apper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b14
4, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fd
a4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpma
p_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Model
ingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob
{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.P
ConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tr
ue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6)
, Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFun
ction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunc
tion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada
, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mode
lingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), No
thing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexi
ngInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}
, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.M
ultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tr
ue}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Flo
at64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosen
brock.Rodas5P{1, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS)
, Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter
!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore
.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, BitVector
}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWra
ppers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothin
g, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, T
uple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWra
pper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.M
TKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vec
tor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrapp
ers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Mode
lingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{F
loat64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}
, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector
{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tupl
e{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{M
odelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.Ov
errideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true
, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciML
Base.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa499
01f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53
f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.Unifo
rmScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Model
ingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vect
or{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}},
Nothing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), Compose
dFunction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_fl
oat)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532
bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb826
6bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, Modelin
gToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tup
le{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Comp
osedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mode
lingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper
{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0x
e3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ
₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f,
0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, R
eturns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.
ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedF
unction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingT
oolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3
, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc8
80802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013
, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVecto
r{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Return
s{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.
TimeDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeserie
s, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3
c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b),
Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface
.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(
2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca
71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x
9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParame
tersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Sy
mbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Pa
rameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSy
mbolic{Real}}}}}}, Val{true}}, Nothing}(FunctionWrappersWrappers.FunctionWr
appersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tu
ple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tu
ple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrap
per{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKP
arameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector
{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappe
rs.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Mod
elingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}
, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}
, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007fcaf39cdb50, Ptr{Nothing} @0x000
07fcb5c86c018, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFuncti
onWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0
x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265
c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}
}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x6
6acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0),
Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0x
ab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54,
0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Void{
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66ac
f316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), No
thing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedV
ector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tupl
e{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007fcaf3a212b0, Ptr{Nothing} @0x
00007fcb5c86c038, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0
, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6
265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{Mod
elingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf31
6, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothi
ng}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de
0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9,
0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c
54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase.Vo
id{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x6
6acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0),
Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a37770, Ptr{Nothing}
@0x00007fcb69e70010, Base.RefValue{SciMLBase.Void{ModelingToolkit.Generated
FunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b79
6c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0
xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.Void{
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66ac
f316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), No
thing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc
6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk
_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059
e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc62
65c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciMLBase
.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de
0), Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.
SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a8adc0, Ptr{Noth
ing} @0x00007fcb69e70028, Base.RefValue{SciMLBase.Void{ModelingToolkit.Gene
ratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0x
a5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x885466
2e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBase.
Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0
), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0
x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x7
5b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e,
0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), SciM
LBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing},
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83
cc6de0), Nothing}}}))), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0
… 0.0 0.0; 0.0 0.0 … 0.0 0.0], nothing, nothing, nothing, nothing, nothing,
nothing, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToo
lkit.ObservedFunctionCache{ModelingToolkit.ODESystem}(Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), Dict{Any, Any}(), false, false, Model
ingToolkit, false, true), nothing, Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), SciMLBase.OverrideInitData{SciMLBase.
NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPara
meters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tr
ue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79f
c2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11c
afd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyste
m}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeo
f(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunctio
n{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingIn
terface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWr
apper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b14
4, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fd
a4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpma
p_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Model
ingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob
{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.P
ConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tr
ue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6)
, Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFun
ction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunc
tion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada
, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mode
lingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), No
thing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexi
ngInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}
, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.M
ultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tr
ue}}(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Modeling
Toolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonli
nearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunct
ionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x42
0c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0x
e783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{
Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit
.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64
}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing,
Nothing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x27
3d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
dedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Linea
rAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunct
ionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonline
arSystem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0
x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41,
0x11cafd93, 0xd588605e), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49
901f8, 0x420c0f66, 0x7c79fc2e), Nothing}(nothing), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf
71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}(nothing)),
LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Ob
servedFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), Dict{Any, Any}(Any[p20_1ˍtt(t), p5_1
ˍtt(t), p9_1ˍt(t), p8_1ˍtt(t), p3_1ˍtt(t), p18_1ˍt(t), p15_1ˍtt(t), p18_1ˍt
t(t), p6_1ˍt(t), p2_1ˍtt(t) … p19_1ˍt(t), p10_1ˍtt(t), p4_1ˍtt(t), p3_1ˍt
(t), p5_1ˍt(t), p11_1ˍtt(t), p4_1ˍt(t), p16_1ˍtt(t), p7_1ˍt(t), p1_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa620
2ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0xca74876d, 0x618456e2), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xa6202ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0x
ca74876d, 0x618456e2), Nothing}(nothing)), SymbolicUtils.BasicSymbolic{Real
}[p10_2(t), p10_3(t), p11_2(t), p11_3(t), p12_2(t), p12_3(t), p13_2(t), p13
_3(t), p14_2(t), p14_3(t) … p1_1ˍtt(t), p20_1ˍtt(t), p2_1ˍtt(t), p3_1ˍtt(
t), p4_1ˍtt(t), p5_1ˍtt(t), p6_1ˍtt(t), p7_1ˍtt(t), p8_1ˍtt(t), p9_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46
afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x
9cc206c8, 0xece1a91b), Nothing}(nothing))), false, false, ModelingToolkit,
false, true), nothing, Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], nothin
g), [0.0, 0.0, -5.033861372906908, 3.484319431960476], ModelingToolkit.MTKP
arameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.2759922279796341, 0.0, 0.0, 0.0,
0.0, 0.0, 0.3826834323650898], Float64[], (), (), (), ()), nothing, nothin
g, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.
update_initializeprob!, identity ∘ ModelingToolkit.safe_float ∘ SymbolicInd
exingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0x
f0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}(ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0
xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}(RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e
532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}(nothing), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}
(nothing))), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.v
ar"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typ
eof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f
54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5
363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}},
Returns{Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tu
ple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Com
posedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mod
elingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0
xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f,
0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}},
Returns{Tuple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}(identity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca
4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0x
e5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}(ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xc
a4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0
xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}(RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22
ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}(nothing), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368)
, Nothing}(nothing))), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{
Tuple{}}(())))), ModelingToolkit.InitializationMetadata{ModelingToolkit.Rec
onstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc8808
02d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0
x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Tim
eDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c05
4df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), No
thing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Ti
meIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a
126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParameter
sGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicInde
xingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructu
res.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symbo
licIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}}}}}(Dict{Any, Any}(p4_3(t) => Initial(p4_3(t)), p16_2(t) => Init
ial(p16_2(t)), p8_3(t) => Initial(p8_3(t)), p11_2(t) => Initial(p11_2(t)),
p2_3(t) => Initial(p2_3(t)), p8_1(t) => Initial(p8_1(t)), p13_3(t) => Initi
al(p13_3(t)), q12_2(t) => Initial(q12_2(t)), lam8(t) => Initial(lam8(t)), p
17_1(t) => Initial(p17_1(t))…), Dict{Any, Any}(Initial(q8_2(t)) => 0.0, Ini
tial(q1_1ˍtt(t)) => false, Initial(p17_1ˍtt(t)) => false, Initial(q2_2ˍt(t)
) => false, Initial(q9_1ˍtt(t)) => false, Initial(q13_3ˍt(t)) => false, Ini
tial(p11_2ˍt(t)) => false, Initial(p10_2ˍt(t)) => false, Initial(p6_2ˍt(t))
=> false, Initial(p13_2(t)) => -0.39637251901583237…), Dict{Any, Any}(), S
ymbolics.Equation[], true, ModelingToolkit.ReconstructInitializeprob{Modeli
ngToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Mod
elingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54
b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothi
ng}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}},
Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{t
ypeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Sy
mbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd,
0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b
065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}(ModelingTool
kit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorAp
plicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x6
34867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}
, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Retur
ns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}(identity) ∘ ModelingToolkit.ObservedWrappe
r{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408
bb6), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d
, 0x14408bb6), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414,
0x413b347f, 0xc880802d), Nothing}(nothing), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679da
b, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}(nothing))), Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}(Float64[])
, Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tuple{}}(()))), ident
ity ∘ SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndex
ingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0
, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64
b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}(SymbolicIndexingInterface
.ContinuousTimeseries(), ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b99
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x
1b4ffc4d, 0x9383e45b), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}(nothing), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}(nothin
g)))), ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepende
ntObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothi
ng}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00
c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Sym
bolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterfa
ce.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initial
s, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 1, 1, 1, 1, 1,
1, 1, 1, 1, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c
, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}
(ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7
c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}
(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Not
hing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}(nothing))), SymbolicIndexingInterface.Multiple
ParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Sym
bolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
[SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}(SciMLStructures.Initials(), 267, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 380, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 86, false)), SymbolicIndexingInterface.GetP
arameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLSt
ructures.Initials(), 92, false)), SymbolicIndexingInterface.GetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.In
itials(), 359, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
206, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 10, false)
), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}(SciMLStructures.Initials(), 76, false)), Symbolic
IndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 38, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 172, false)) … SymbolicIndexingInterface.
GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(Sci
MLStructures.Initials(), 27, false)), SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 259, false)), SymbolicIndexingInterface.GetParameterIndex{Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials
(), 254, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 36, fa
lse)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, false)), Symb
olicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 237, false)), SymbolicIndexi
ngInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 215, false)), SymbolicIndexingInterfac
e.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 117, false)), SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStruct
ures.Initials(), 45, false)), SymbolicIndexingInterface.GetParameterIndex{M
odelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initia
ls(), 294, false))], nothing)), ModelingToolkit.SetInitialUnknowns{Symbolic
IndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}}}}(SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}}}(SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 267, false)), Initial(p10_2(t))), SymbolicIndexingInterface.P
arameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicS
ymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 380, fals
e)), Initial(p10_3(t))), SymbolicIndexingInterface.ParameterHookWrapper{Sym
bolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 86, false)), Initial(p11_2(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 92, false)), Initial(p11_3(t))), SymbolicIndexingInterfa
ce.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Ba
sicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 359,
false)), Initial(p12_2(t))), SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 206, false)), Initial(p12_3(
t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciM
LStructures.Initials(), 10, false)), Initial(p13_2(t))), SymbolicIndexingIn
terface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUti
ls.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
76, false)), Initial(p13_3(t))), SymbolicIndexingInterface.ParameterHookWra
pper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(
SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}(SciMLStructures.Initials(), 38, false)), Initial(p14
_2(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterfac
e.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 172, false)), Initial(p14_3(t))) … SymbolicInd
exingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterI
ndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symb
olicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initi
als(), 27, false)), Initial(p1_1ˍtt(t))), SymbolicIndexingInterface.Paramet
erHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymboli
c{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 259, false)), I
nitial(p20_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 254, false)), Initial(p2_1ˍtt(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 36, false)), Initial(p3_1ˍtt(t))), SymbolicIndexingInter
face.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Model
ingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.
BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23,
false)), Initial(p4_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrap
per{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(S
ymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}(SciMLStructures.Initials(), 237, false)), Initial(p5_
1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingI
nterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
(SciMLStructures.Initials(), 215, false)), Initial(p6_1ˍtt(t))), SymbolicIn
dexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sym
bolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 117, false)), Initial(p7_1ˍtt(t))), SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 45, false)),
Initial(p8_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 294, false)), Initial(p9_1ˍtt(t)))]
))), Val{true}()), nothing), [[0.09988894819708992, 0.3826834323650898, 0.9
109909992588205, -0.40673664307580015, 0.5146184802429882, -0.4067366430758
0015, -0.39637251901583237, -0.40673664307580015, -0.9109909992588205, -0.4
0673664307580015 … -2.9842341509894617, 1.092262886230266, -1.20060803220
6675, 4.175891999514561, 4.683210670492554, -2.842932844578383, -8.37219407
5591601, -7.485794633780495, -1.0013590596682649, 6.169954996728397]], [0.0
], [[[0.09988894819708992, 0.3826834323650898, 0.9109909992588205, -0.40673
664307580015, 0.5146184802429882, -0.40673664307580015, -0.3963725190158323
7, -0.40673664307580015, -0.9109909992588205, -0.40673664307580015 … -2.9
842341509894617, 1.092262886230266, -1.200608032206675, 4.175891999514561,
4.683210670492554, -2.842932844578383, -8.372194075591601, -7.4857946337804
95, -1.0013590596682649, 6.169954996728397]]], nothing, true, OrdinaryDiffE
qRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vect
or{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.Rod
asTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.
ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.Functi
onWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vec
tor{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tupl
e{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing
, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.
MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Ve
ctor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWr
appers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolk
it.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitDa
ta{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingTo
olkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float6
4, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonline
arFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctio
nWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c
0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe7
83be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bo
ol}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.N
onlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64},
Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, No
thing}, typeof(ModelingToolkit.update_initializeprob!), ComposedFunction{Co
mposedFunction{typeof(identity), typeof(ModelingToolkit.safe_float)}, Symbo
licIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Genera
tedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c57
9f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d
0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var
"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction
{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.
ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true
), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), N
othing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc,
0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple
{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.ReconstructI
nitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Mode
lingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Obser
vedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d
, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64
, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}
, ComposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependen
tObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2
a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}},
true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepen
dentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x
00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{S
ymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInter
face.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexi
ngInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookW
rapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}
}}}}}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, SciMLBase.UJacobianWrapper{true, Sc
iMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrapper
s.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, T
uple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{Static
ArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple
{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper
{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKPa
rameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{
Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.
FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Modeling
Toolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Fu
nctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}
, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Model
ingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.Overri
deInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Mo
delingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase
.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Generate
dFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8
, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b1
61, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformSc
aling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingT
oolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{F
loat64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Not
hing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), ComposedFun
ction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_float)
}, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolki
t.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd,
0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb
, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToo
lkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{R
eturns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Composed
Function{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modeling
Toolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe303
3bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81
c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Retur
ns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.Reco
nstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunct
ion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolk
it.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc88080
2d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x
3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tu
ple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Time
DependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries, M
odelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054
df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Not
hing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Tim
eIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2
, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a1
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694
e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParameters
Getter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndex
ingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructur
es.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symbol
icIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Parame
terHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbol
ic{Real}}}}}}, Val{true}}, Nothing}, Float64, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, LinearSolve.LinearCache{Matrix{Floa
t64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSol
ve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.L
U{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float
64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{I
nt64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Ve
ctor{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{
Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky
{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}
}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.Re
fValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float6
4}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, No
thing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{Lin
earAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Floa
t64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLL
ogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silen
t, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, Sci
MLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Si
lent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}},
Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep
{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}},
Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobian
Prep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}}}, Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwo
ArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFu
nction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWra
ppersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{F
loat64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Si
zedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tup
le{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{Stat
icArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tup
le{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapp
er{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKPa
rameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{
Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrapper
s.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Mode
lingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{F
loat64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}
}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.OD
ESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{Sc
iMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit
.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Ve
ctor{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFun
ction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrap
per{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66,
0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be4
1, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool},
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Nonlin
earSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Noth
ing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing
}, typeof(ModelingToolkit.update_initializeprob!), ComposedFunction{Compose
dFunction{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIn
dexingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0
xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#ini
tprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{Static
ArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{Mode
lingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Obser
vedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4
cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}
}, ModelingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitia
lizeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingT
oolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWr
apper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters
___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}
, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x1
4408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, Com
posedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentObse
rvedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolki
t.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb0
03, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}
}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentO
bservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}
, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c75
65d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Symbol
icIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.
GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInt
erface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrappe
r{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}
, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{Stat
icArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tup
le{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff
{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple
{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInterf
aceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradi
entWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Func
tionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Functio
nWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.M
TKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vec
tor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrapp
ers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Mo
delingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}
, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector
{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Fl
oat64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{
}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.
SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64,
Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Observed
FunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESyste
m, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector
{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArray
sCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{},
Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Model
ingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x2
73d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Line
arAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunc
tionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonlin
earSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{},
@NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initialize
prob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(Modeling
Toolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObservedFunc
tion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff4
6afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothi
ng}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_
getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{F
loat64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(i
dentity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Generated
FunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8,
0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe536340
0, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Retu
rns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{M
odelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{
Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(identi
ty)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFuncti
onWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0
x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e7
99c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{T
uple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicInd
exingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.Cont
inuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4
d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIn
dexingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0
x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8,
0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface
.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, V
ector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Parameter
Index{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetIni
tialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndex
ingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbol
icUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}, Mo
delingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{F
loat64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}},
Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.AutoForwar
dDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing,
typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, nothing, t
ypeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivi
al_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(Ordinary
DiffEqCore.trivial_limiter!)}([0.09988894819708992, 0.3826834323650898, 0.9
109909992588205, -0.40673664307580015, 0.5146184802429882, -0.4067366430758
0015, -0.39637251901583237, -0.40673664307580015, -0.9109909992588205, -0.4
0673664307580015 … -2.9842341509894617, 1.092262886230266, -1.20060803220
6675, 4.175891999514561, 4.683210670492554, -2.842932844578383, -8.37219407
5591601, -7.485794633780495, -1.0013590596682649, 6.169954996728397], [0.09
988894819708992, 0.3826834323650898, 0.9109909992588205, -0.406736643075800
15, 0.5146184802429882, -0.40673664307580015, -0.39637251901583237, -0.4067
3664307580015, -0.9109909992588205, -0.40673664307580015 … -2.98423415098
94617, 1.092262886230266, -1.200608032206675, 4.175891999514561, 4.68321067
0492554, -2.842932844578383, -8.372194075591601, -7.485794633780495, -1.001
3590596682649, 6.169954996728397], [[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0
, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 …
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0 0.0
… 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [0.0, 0.0, 0.0, 0
.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0
, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0
.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0
.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0
.0], [NaN NaN … NaN NaN; 9.9e-322 1.06099858e-314 … 1.07963391e-315 9.9e-32
2; … ; NaN NaN … NaN NaN; 1.0610003174e-314 1.0609980195e-314 … 1.061001002
e-314 8.57958907e-316], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
… 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEqRosenbrock.RodasTablea
u{Float64, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0.0; … ; -7.502846399
306121 2.561846144803919 … 0.0 0.0; -7.502846399306121 2.561846144803919 …
1.0 0.0], [0.0 0.0 … 0.0 0.0; -14.155112264123755 0.0 … 0.0 0.0; … ; 30.912
73214028599 -3.1208243349937974 … -28.087943162872662 0.0; 37.8027712339056
3 -3.2571969029072276 … -54.66780262877968 -9.48861652309627], 0.2119375631
9429014, [0.0, 0.6358126895828704, 0.4095798393397535, 0.9769306725060716,
0.4288403609558664, 1.0, 1.0, 1.0], [0.21193756319429014, -0.42387512638858
027, -0.3384627126235924, 1.8046452872882734, 2.325825639765069, 0.0, 0.0,
0.0], [25.948786856663858 -2.5579724845846235 … 0.4272876194431874 -0.17202
221070155493; -9.91568850695171 -0.9689944594115154 … -6.789040303419874 -6
.710236069923372; 11.419903575922262 2.8879645146136994 … -0.15582684282751
913 4.883087185713722]), SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEF
unction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWr
appersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tu
ple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tu
ple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrap
per{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKP
arameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector
{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappe
rs.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Mod
elingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.O
DESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{S
ciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolki
t.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFu
nction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66
, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be
41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool},
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Nonli
nearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Not
hing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothin
g}, typeof(ModelingToolkit.update_initializeprob!), ComposedFunction{Compos
edFunction{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicI
ndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f,
0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57
, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#in
itprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{Stati
cArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{Mod
elingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Obse
rvedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothi
ng}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d
4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}
}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.ReconstructIniti
alizeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Modeling
Toolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedW
rapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameter
s___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x
14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Ve
ctor{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, Co
mposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentObs
ervedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolk
it.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb
003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true
}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependent
ObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7
565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Symbo
licIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface
.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingIn
terface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapp
er{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}
}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tu
ple{}, Tuple{}, Tuple{}, Tuple{}}}(SciMLBase.ODEFunction{true, SciMLBase.Au
toSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{Functi
onWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float6
4}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, T
uple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Fl
oat64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore
.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{
}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing
, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.
Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Modeli
ngToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, Modeli
ngToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSqu
aresProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Flo
at64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{},
Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.Ful
lSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameter
s___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e
), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingTo
olkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, Mode
lingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol,
Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit
.update_initializeprob!), ComposedFunction{ComposedFunction{typeof(identity
), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndep
endentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true
), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), N
othing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8,
0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{Mode
lingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorA
pplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2
d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7
3396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Retu
rns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initia
lizationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.
var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplic
ator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolk
it.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x63486
7e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{T
uple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(iden
tity), SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicInde
xingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrappe
r{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b
0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x6
4b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUp
datedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingT
oolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab0
7fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150
967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, Symboli
cIndexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.Index
erNotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, Mode
lingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Ve
ctor{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterfa
ce.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initial
s, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}(Fu
nctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Funct
ionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit
.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, V
ector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWra
ppers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vect
or{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64
}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vect
or{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tupl
e{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple
{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapp
er{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKPara
meters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Fl
oat64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x0000
7fcaf39cdb50, Ptr{Nothing} @0x00007fcb5c86c018, Base.RefValue{SciMLBase.Voi
d{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66
acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0),
Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d
3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6,
0x8b759b0c, 0x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWrappe
r{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e
9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7
ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb
2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Noth
ing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(
2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9,
0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3
bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}), FunctionWrappers.FunctionWrappe
r{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKP
arameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector
{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x0
0007fcaf3a212b0, Ptr{Nothing} @0x00007fcb5c86c038, Base.RefValue{SciMLBase.
Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0
), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2,
3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xa
b7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee
6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWra
pper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b0
59e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54,
0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x
3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), N
othing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e
9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7
ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}), FunctionWrappers.FunctionWra
pper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTK
Parameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vecto
r{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @
0x00007fcaf3a37770, Ptr{Nothing} @0x00007fcb69e70010, Base.RefValue{SciMLBa
se.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6
de0), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(
2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9,
0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3
bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunction
Wrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x7
5b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c5
4, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0)
, Nothing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWra
pper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b0
59e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54,
0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}), FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothi
ng} @0x00007fcaf3a8adc0, Ptr{Nothing} @0x00007fcb69e70028, Base.RefValue{Sc
iMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameter
s___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x
83cc6de0), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrap
per{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b05
9e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0
x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFun
ctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0
, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6
265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66ac
f316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc
6de0), Nothing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFuncti
onWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0
x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265
c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}))), [1.0 0.0 … 0.0 0.0
; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit
.ODESystem}(Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), Dict{Any, Any}(), false, false, Model
ingToolkit, false, true), nothing, Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), SciMLBase.OverrideInitData{SciMLBase.
NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPara
meters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tr
ue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79f
c2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11c
afd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyste
m}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeo
f(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunctio
n{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingIn
terface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWr
apper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b14
4, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fd
a4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpma
p_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Model
ingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob
{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.P
ConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tr
ue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6)
, Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFun
ction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunc
tion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada
, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mode
lingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), No
thing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexi
ngInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}
, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.M
ultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tr
ue}}(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Modeling
Toolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonli
nearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunct
ionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x42
0c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0x
e783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{
Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit
.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64
}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing,
Nothing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x27
3d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
dedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Linea
rAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunct
ionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonline
arSystem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0
x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41,
0x11cafd93, 0xd588605e), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49
901f8, 0x420c0f66, 0x7c79fc2e), Nothing}(nothing), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf
71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}(nothing)),
LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Ob
servedFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), Dict{Any, Any}(Any[p20_1ˍtt(t), p5_1
ˍtt(t), p9_1ˍt(t), p8_1ˍtt(t), p3_1ˍtt(t), p18_1ˍt(t), p15_1ˍtt(t), p18_1ˍt
t(t), p6_1ˍt(t), p2_1ˍtt(t) … p19_1ˍt(t), p10_1ˍtt(t), p4_1ˍtt(t), p3_1ˍt
(t), p5_1ˍt(t), p11_1ˍtt(t), p4_1ˍt(t), p16_1ˍtt(t), p7_1ˍt(t), p1_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa620
2ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0xca74876d, 0x618456e2), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xa6202ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0x
ca74876d, 0x618456e2), Nothing}(nothing)), SymbolicUtils.BasicSymbolic{Real
}[p10_2(t), p10_3(t), p11_2(t), p11_3(t), p12_2(t), p12_3(t), p13_2(t), p13
_3(t), p14_2(t), p14_3(t) … p1_1ˍtt(t), p20_1ˍtt(t), p2_1ˍtt(t), p3_1ˍtt(
t), p4_1ˍtt(t), p5_1ˍtt(t), p6_1ˍtt(t), p7_1ˍtt(t), p8_1ˍtt(t), p9_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46
afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x
9cc206c8, 0xece1a91b), Nothing}(nothing))), false, false, ModelingToolkit,
false, true), nothing, Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], nothin
g), [0.0, 0.0, -5.033861372906908, 3.484319431960476], ModelingToolkit.MTKP
arameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.2759922279796341, 0.0, 0.0, 0.0,
0.0, 0.0, 0.3826834323650898], Float64[], (), (), (), ()), nothing, nothin
g, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.
update_initializeprob!, identity ∘ ModelingToolkit.safe_float ∘ SymbolicInd
exingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0x
f0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}(ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0
xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}(RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e
532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}(nothing), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}
(nothing))), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.v
ar"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typ
eof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f
54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5
363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}},
Returns{Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tu
ple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Com
posedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mod
elingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0
xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f,
0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}},
Returns{Tuple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}(identity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca
4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0x
e5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}(ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xc
a4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0
xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}(RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22
ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}(nothing), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368)
, Nothing}(nothing))), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{
Tuple{}}(())))), ModelingToolkit.InitializationMetadata{ModelingToolkit.Rec
onstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc8808
02d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0
x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Tim
eDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c05
4df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), No
thing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Ti
meIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a
126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParameter
sGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicInde
xingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructu
res.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symbo
licIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}}}}}(Dict{Any, Any}(p4_3(t) => Initial(p4_3(t)), p16_2(t) => Init
ial(p16_2(t)), p8_3(t) => Initial(p8_3(t)), p11_2(t) => Initial(p11_2(t)),
p2_3(t) => Initial(p2_3(t)), p8_1(t) => Initial(p8_1(t)), p13_3(t) => Initi
al(p13_3(t)), q12_2(t) => Initial(q12_2(t)), lam8(t) => Initial(lam8(t)), p
17_1(t) => Initial(p17_1(t))…), Dict{Any, Any}(Initial(q8_2(t)) => 0.0, Ini
tial(q1_1ˍtt(t)) => false, Initial(p17_1ˍtt(t)) => false, Initial(q2_2ˍt(t)
) => false, Initial(q9_1ˍtt(t)) => false, Initial(q13_3ˍt(t)) => false, Ini
tial(p11_2ˍt(t)) => false, Initial(p10_2ˍt(t)) => false, Initial(p6_2ˍt(t))
=> false, Initial(p13_2(t)) => -0.39637251901583237…), Dict{Any, Any}(), S
ymbolics.Equation[], true, ModelingToolkit.ReconstructInitializeprob{Modeli
ngToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Mod
elingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54
b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothi
ng}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}},
Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{t
ypeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Sy
mbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd,
0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b
065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}(ModelingTool
kit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorAp
plicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x6
34867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}
, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Retur
ns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}(identity) ∘ ModelingToolkit.ObservedWrappe
r{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408
bb6), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d
, 0x14408bb6), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414,
0x413b347f, 0xc880802d), Nothing}(nothing), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679da
b, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}(nothing))), Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}(Float64[])
, Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tuple{}}(()))), ident
ity ∘ SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndex
ingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0
, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64
b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}(SymbolicIndexingInterface
.ContinuousTimeseries(), ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b99
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x
1b4ffc4d, 0x9383e45b), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}(nothing), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}(nothin
g)))), ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepende
ntObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothi
ng}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00
c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Sym
bolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterfa
ce.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initial
s, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 1, 1, 1, 1, 1,
1, 1, 1, 1, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c
, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}
(ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7
c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}
(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Not
hing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}(nothing))), SymbolicIndexingInterface.Multiple
ParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Sym
bolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
[SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}(SciMLStructures.Initials(), 267, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 380, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 86, false)), SymbolicIndexingInterface.GetP
arameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLSt
ructures.Initials(), 92, false)), SymbolicIndexingInterface.GetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.In
itials(), 359, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
206, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 10, false)
), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}(SciMLStructures.Initials(), 76, false)), Symbolic
IndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 38, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 172, false)) … SymbolicIndexingInterface.
GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(Sci
MLStructures.Initials(), 27, false)), SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 259, false)), SymbolicIndexingInterface.GetParameterIndex{Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials
(), 254, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 36, fa
lse)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, false)), Symb
olicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 237, false)), SymbolicIndexi
ngInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 215, false)), SymbolicIndexingInterfac
e.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 117, false)), SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStruct
ures.Initials(), 45, false)), SymbolicIndexingInterface.GetParameterIndex{M
odelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initia
ls(), 294, false))], nothing)), ModelingToolkit.SetInitialUnknowns{Symbolic
IndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}}}}(SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}}}(SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 267, false)), Initial(p10_2(t))), SymbolicIndexingInterface.P
arameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicS
ymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 380, fals
e)), Initial(p10_3(t))), SymbolicIndexingInterface.ParameterHookWrapper{Sym
bolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 86, false)), Initial(p11_2(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 92, false)), Initial(p11_3(t))), SymbolicIndexingInterfa
ce.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Ba
sicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 359,
false)), Initial(p12_2(t))), SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 206, false)), Initial(p12_3(
t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciM
LStructures.Initials(), 10, false)), Initial(p13_2(t))), SymbolicIndexingIn
terface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUti
ls.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
76, false)), Initial(p13_3(t))), SymbolicIndexingInterface.ParameterHookWra
pper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(
SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}(SciMLStructures.Initials(), 38, false)), Initial(p14
_2(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterfac
e.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 172, false)), Initial(p14_3(t))) … SymbolicInd
exingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterI
ndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symb
olicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initi
als(), 27, false)), Initial(p1_1ˍtt(t))), SymbolicIndexingInterface.Paramet
erHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymboli
c{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 259, false)), I
nitial(p20_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 254, false)), Initial(p2_1ˍtt(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 36, false)), Initial(p3_1ˍtt(t))), SymbolicIndexingInter
face.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Model
ingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.
BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23,
false)), Initial(p4_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrap
per{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(S
ymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}(SciMLStructures.Initials(), 237, false)), Initial(p5_
1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingI
nterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
(SciMLStructures.Initials(), 215, false)), Initial(p6_1ˍtt(t))), SymbolicIn
dexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sym
bolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 117, false)), Initial(p7_1ˍtt(t))), SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 45, false)),
Initial(p8_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 294, false)), Initial(p9_1ˍtt(t)))]
))), Val{true}()), nothing), [0.09988894819708992, 0.3826834323650898, 0.91
09909992588205, -0.40673664307580015, 0.5146184802429882, -0.40673664307580
015, -0.39637251901583237, -0.40673664307580015, -0.9109909992588205, -0.40
673664307580015 … -2.9842341509894617, 1.092262886230266, -1.200608032206
675, 4.175891999514561, 4.683210670492554, -2.842932844578383, -8.372194075
591601, -7.485794633780495, -1.0013590596682649, 6.169954996728397], Modeli
ngToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}(Float64[], [0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.39637251901583237 … 0.0, 0.
0, 0.0, 0.2759922279796341, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3826834323650898], (
), (), (), ())), SciMLBase.UJacobianWrapper{true, SciMLBase.ODEFunction{tru
e, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapp
er{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, V
ector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, T
uple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Fl
oat64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tupl
e{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing
, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false},
LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem},
Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.No
nlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParame
ters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true
, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2
e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11caf
d93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}
, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base
.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(
ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{
typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInte
rface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrap
per{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144,
0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4
d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_
split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore
.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolki
t.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper
{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
d9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), No
thing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Modelin
gToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{M
odelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCo
nstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true
, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1e
a5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6),
Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float6
4}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunct
ion{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFuncti
on{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generate
dFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x3053
51dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada,
0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Modeli
ngToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFun
ction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf5
27ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Noth
ing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexing
Interface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParamet
erIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}},
Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mul
tipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true
}}, Nothing}, Float64, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Funct
ionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MT
KParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vect
or{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappe
rs.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Mod
elingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}},
FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{
Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Flo
at64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}
}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forw
ardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float6
4, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, V
ector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedF
unctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem
, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{
Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, T
uple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x27
3d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
dedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Linea
rAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunct
ionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonline
arSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @
NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initializep
rob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(ModelingT
oolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObservedFunct
ion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46
afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothin
g}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_g
etter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Fl
oat64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(id
entity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8,
0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400
, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Retur
ns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{Mo
delingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{T
uple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(identit
y)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctio
nWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x
413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e79
9c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysC
ore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tu
ple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicInde
xingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.Conti
nuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d
, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicInd
exingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x
6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8,
0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.
MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Ve
ctor{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInit
ialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexi
ngInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInde
x{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symboli
cUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}(FunctionWrappersWrapp
ers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing,
Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{Stat
icArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tup
le{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapp
er{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTK
Parameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vecto
r{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrapper
s.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Modeli
ngToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}},
FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{F
orwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Fl
oat64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{
}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{V
ector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007fcaf39cdb50, Ptr{N
othing} @0x00007fcb5c86c018, Base.RefValue{SciMLBase.Void{ModelingToolkit.G
eneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f,
0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x885
4662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciMLBa
se.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6
de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c
, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0,
0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854662
e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)))), S
ciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0
x83cc6de0), Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArr
aysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{},
Tuple{}, Tuple{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007fcaf3a212b0, Pt
r{Nothing} @0x00007fcb5c86c038, Base.RefValue{SciMLBase.Void{ModelingToolki
t.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb278
1f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(SciM
LBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing},
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1,
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83
cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759
b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c
0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8854
662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing))))
, SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c
, 0x83cc6de0), Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple
{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticAr
raysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}
, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a37770,
Ptr{Nothing} @0x00007fcb69e70010, Base.RefValue{SciMLBase.Void{ModelingToo
lkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb
2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}}}}(S
ciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0
x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true
), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b
759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b7
96c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8
854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(nothing)
))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b),
Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759
b0c, 0x83cc6de0), Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tu
ple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tu
ple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007fcaf3a8
adc0, Ptr{Nothing} @0x00007fcb69e70028, Base.RefValue{SciMLBase.Void{Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316,
0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}
}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f4b), N
othing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b
0c, 0x83cc6de0), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :
___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7
d3f4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6,
0x8b759b0c, 0x83cc6de0), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0
xa5b796c0, 0x75b059e9, 0xab7d3f4b), Nothing}(nothing), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x8b759b0c, 0x83cc6de0), Nothing}(not
hing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x66acf316, 0x3bb2781f, 0xa5b796c0, 0x75b059e9, 0xab7d3f
4b), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x8854662e, 0xc6265c54, 0x7ea3bee6, 0x
8b759b0c, 0x83cc6de0), Nothing}}}))), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0
; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}(Model s
ys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), Dict{Any, Any}(), false, false, Model
ingToolkit, false, true), nothing, Model sys_raw:
Equations (160):
160 standard: see equations(sys_raw)
Unknowns (160): see unknowns(sys_raw)
p10_2(t) [defaults to 0.0998889]
p10_3(t) [defaults to 0.382683]
p11_2(t) [defaults to 0.910991]
p11_3(t) [defaults to -0.406737]
⋮
Observed (80): see observed(sys_raw), SciMLBase.OverrideInitData{SciMLBase.
NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPara
meters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tr
ue, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79f
c2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11c
afd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSyste
m}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeo
f(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunctio
n{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingIn
terface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWr
apper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b14
4, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fd
a4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpma
p_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCo
re.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368),
Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Model
ingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob
{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.P
ConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tr
ue, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6)
, Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFun
ction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunc
tion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada
, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, Mode
lingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedF
unction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), No
thing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexi
ngInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}
, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.M
ultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tr
ue}}(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Modeling
Toolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Floa
t64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonli
nearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunct
ionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x42
0c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0x
e783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformScaling{
Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit
.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64
}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing,
Nothing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x27
3d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
dedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, Linea
rAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunct
ionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.Nonline
arSystem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0
x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41,
0x11cafd93, 0xd588605e), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49
901f8, 0x420c0f66, 0x7c79fc2e), Nothing}(nothing), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf
71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}(nothing)),
LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Ob
servedFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), Dict{Any, Any}(Any[p20_1ˍtt(t), p5_1
ˍtt(t), p9_1ˍt(t), p8_1ˍtt(t), p3_1ˍtt(t), p18_1ˍt(t), p15_1ˍtt(t), p18_1ˍt
t(t), p6_1ˍt(t), p2_1ˍtt(t) … p19_1ˍt(t), p10_1ˍtt(t), p4_1ˍtt(t), p3_1ˍt
(t), p5_1ˍt(t), p11_1ˍtt(t), p4_1ˍt(t), p16_1ˍtt(t), p7_1ˍt(t), p1_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa620
2ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0xca74876d, 0x618456e2), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xa6202ccd, 0xf3471c0a, 0x806a4e9e, 0x27010ef6, 0x4d92f413),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb2582de2, 0xbaa1954f, 0x8ae0d6a8, 0x
ca74876d, 0x618456e2), Nothing}(nothing)), SymbolicUtils.BasicSymbolic{Real
}[p10_2(t), p10_3(t), p11_2(t), p11_3(t), p12_2(t), p12_3(t), p13_2(t), p13
_3(t), p14_2(t), p14_3(t) … p1_1ˍtt(t), p20_1ˍtt(t), p2_1ˍtt(t), p3_1ˍtt(
t), p4_1ˍtt(t), p5_1ˍtt(t), p6_1ˍtt(t), p7_1ˍtt(t), p8_1ˍtt(t), p9_1ˍtt(t)]
=> ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46
afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothin
g}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa),
Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x
9cc206c8, 0xece1a91b), Nothing}(nothing))), false, false, ModelingToolkit,
false, true), nothing, Model sys_raw:
Equations (64):
64 standard: see equations(sys_raw)
Unknowns (4): see unknowns(sys_raw)
p16_1ˍt(t) [defaults to 0.823076]
p20_1ˍt(t) [defaults to 0.108005]
q15_2ˍt(t) [defaults to 0.0]
q6_3ˍt(t) [defaults to 0.0]
Parameters (381): see parameters(sys_raw)
t
Initial(q8_2(t)) [defaults to false]
Initial(q2_2ˍt(t)) [defaults to false]
Initial(q13_3ˍt(t)) [defaults to false]
⋮
Observed (236): see observed(sys_raw), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], nothin
g), [0.0, 0.0, -5.033861372906908, 3.484319431960476], ModelingToolkit.MTKP
arameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.2759922279796341, 0.0, 0.0, 0.0,
0.0, 0.0, 0.3826834323650898], Float64[], (), (), (), ()), nothing, nothin
g, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.
update_initializeprob!, identity ∘ ModelingToolkit.safe_float ∘ SymbolicInd
exingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFun
ctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0x
f0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}(ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0
xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57,
0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}(RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e
532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}(nothing), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}
(nothing))), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.v
ar"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vec
tor{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typ
eof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f
54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5
363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}},
Returns{Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tu
ple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Com
posedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mod
elingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0
xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f,
0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}},
Returns{Tuple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}(identity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca
4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0x
e5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}(ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xc
a4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0
xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}(RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22
ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}(nothing), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368)
, Nothing}(nothing))), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{
Tuple{}}(())))), ModelingToolkit.InitializationMetadata{ModelingToolkit.Rec
onstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc8808
02d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0
x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Tim
eDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries,
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c05
4df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), No
thing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Ti
meIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a
126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParameter
sGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicInde
xingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructu
res.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symbo
licIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}}}}}(Dict{Any, Any}(p4_3(t) => Initial(p4_3(t)), p16_2(t) => Init
ial(p16_2(t)), p8_3(t) => Initial(p8_3(t)), p11_2(t) => Initial(p11_2(t)),
p2_3(t) => Initial(p2_3(t)), p8_1(t) => Initial(p8_1(t)), p13_3(t) => Initi
al(p13_3(t)), q12_2(t) => Initial(q12_2(t)), lam8(t) => Initial(lam8(t)), p
17_1(t) => Initial(p17_1(t))…), Dict{Any, Any}(Initial(q8_2(t)) => 0.0, Ini
tial(q1_1ˍtt(t)) => false, Initial(p17_1ˍtt(t)) => false, Initial(q2_2ˍt(t)
) => false, Initial(q9_1ˍtt(t)) => false, Initial(q13_3ˍt(t)) => false, Ini
tial(p11_2ˍt(t)) => false, Initial(p10_2ˍt(t)) => false, Initial(p6_2ˍt(t))
=> false, Initial(p13_2(t)) => -0.39637251901583237…), Dict{Any, Any}(), S
ymbolics.Equation[], true, ModelingToolkit.ReconstructInitializeprob{Modeli
ngToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Mod
elingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54
b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothi
ng}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}},
Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{t
ypeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Sy
mbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd,
0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b
065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}(ModelingTool
kit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorAp
plicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x6
34867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}
, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Retur
ns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}(identity) ∘ ModelingToolkit.ObservedWrappe
r{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408
bb6), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d
, 0x14408bb6), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414,
0x413b347f, 0xc880802d), Nothing}(nothing), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679da
b, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}(nothing))), Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}(Float64[])
, Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tuple{}}(()))), ident
ity ∘ SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndex
ingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0
, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64
b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}(SymbolicIndexingInterface
.ContinuousTimeseries(), ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tr
ue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b99
26), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x
1b4ffc4d, 0x9383e45b), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x30
5351dd, 0x8b9585b0, 0xaa6b9926), Nothing}(nothing), RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}(nothin
g)))), ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndepende
ntObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothi
ng}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00
c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{Sym
bolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterfa
ce.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initial
s, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 1, 1, 1, 1, 1,
1, 1, 1, 1, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c
, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}
(ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7
c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}
(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Not
hing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x969
4e69f, 0x00c7565d), Nothing}(nothing))), SymbolicIndexingInterface.Multiple
ParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Sym
bolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetPara
meterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}
[SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}(SciMLStructures.Initials(), 267, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 380, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 86, false)), SymbolicIndexingInterface.GetP
arameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLSt
ructures.Initials(), 92, false)), SymbolicIndexingInterface.GetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.In
itials(), 359, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
206, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 10, false)
), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}(SciMLStructures.Initials(), 76, false)), Symbolic
IndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 38, false)), SymbolicIndexingInt
erface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 172, false)) … SymbolicIndexingInterface.
GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(Sci
MLStructures.Initials(), 27, false)), SymbolicIndexingInterface.GetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 259, false)), SymbolicIndexingInterface.GetParameterIndex{Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials
(), 254, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolk
it.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 36, fa
lse)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, false)), Symb
olicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 237, false)), SymbolicIndexi
ngInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 215, false)), SymbolicIndexingInterfac
e.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 117, false)), SymbolicIndexingInterface.GetParam
eterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStruct
ures.Initials(), 45, false)), SymbolicIndexingInterface.GetParameterIndex{M
odelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initia
ls(), 294, false))], nothing)), ModelingToolkit.SetInitialUnknowns{Symbolic
IndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}}}}(SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}}}(SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Mod
elingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructure
s.Initials(), 267, false)), Initial(p10_2(t))), SymbolicIndexingInterface.P
arameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicS
ymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 380, fals
e)), Initial(p10_3(t))), SymbolicIndexingInterface.ParameterHookWrapper{Sym
bolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{Sci
MLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}(SciMLStructures.Initials(), 86, false)), Initial(p11_2(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 92, false)), Initial(p11_3(t))), SymbolicIndexingInterfa
ce.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Ba
sicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 359,
false)), Initial(p12_2(t))), SymbolicIndexingInterface.ParameterHookWrapper
{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}(SciMLStructures.Initials(), 206, false)), Initial(p12_3(
t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciM
LStructures.Initials(), 10, false)), Initial(p13_2(t))), SymbolicIndexingIn
terface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUti
ls.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(),
76, false)), Initial(p13_3(t))), SymbolicIndexingInterface.ParameterHookWra
pper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterI
ndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(
SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}(SciMLStructures.Initials(), 38, false)), Initial(p14
_2(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterfac
e.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(S
ciMLStructures.Initials(), 172, false)), Initial(p14_3(t))) … SymbolicInd
exingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterI
ndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symb
olicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initi
als(), 27, false)), Initial(p1_1ˍtt(t))), SymbolicIndexingInterface.Paramet
erHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymboli
c{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 259, false)), I
nitial(p20_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 254, false)), Initial(p2_1ˍtt(t))),
SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.S
etParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStru
ctures.Initials(), 36, false)), Initial(p3_1ˍtt(t))), SymbolicIndexingInter
face.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{Model
ingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.
BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23,
false)), Initial(p4_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrap
per{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(S
ymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}(SciMLStructures.Initials(), 237, false)), Initial(p5_
1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingI
nterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterf
ace.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initia
ls, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
(SciMLStructures.Initials(), 215, false)), Initial(p6_1ˍtt(t))), SymbolicIn
dexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sym
bolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 117, false)), Initial(p7_1ˍtt(t))), SymbolicIndexingInterface.Param
eterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbo
lic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex
{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 45, false)),
Initial(p8_1ˍtt(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symbol
icIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicInd
exingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}(SciMLStructures.Initials(), 294, false)), Initial(p9_1ˍtt(t)))]
))), Val{true}()), nothing), 0.0, ModelingToolkit.MTKParameters{StaticArray
sCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, T
uple{}, Tuple{}, Tuple{}}(Float64[], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
0, 0.0, -0.39637251901583237 … 0.0, 0.0, 0.0, 0.2759922279796341, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.3826834323650898], (), (), (), ())), [0.0, 0.0, 0.0, 0.
0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vecto
r{Float64}, SciMLBase.NullParameters, LinearSolve.DefaultLinearSolver, Line
arSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{
Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{Line
arAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tupl
e{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}
, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Flo
at64}, Vector{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}},
LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Fl
oat64, Matrix{Float64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{Linear
Algebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}},
LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vector{
Int64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Matrix{Float64}, Vect
or{Float64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64,
Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float
64, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, S
ciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.
Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, S
ciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggi
ng.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent},
Bool, LinearSolve.LinearSolveAdjoint{Missing}}([NaN NaN … NaN NaN; 9.9e-322
1.06099858e-314 … 1.07963391e-315 9.9e-322; … ; NaN NaN … NaN NaN; 1.06100
03174e-314 1.0609980195e-314 … 1.061001002e-314 8.57958907e-316], [0.0, 0.0
, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 …
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters
(), LinearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmChoice.LUFa
ctorization, true, false), LinearSolve.DefaultLinearSolverInit{LinearAlgebr
a.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Fl
oat64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vecto
r{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64},
Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.S
VD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Chole
sky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float
64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base
.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{
Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Flo
at64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing,
Nothing, Matrix{Float64}, Vector{Float64}}(LinearAlgebra.LU{Float64, Matri
x{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Linea
rAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}(Matrix{Floa
t64}(undef, 0, 0), Matrix{Float64}(undef, 0, 0)), nothing, nothing, nothing
, nothing, nothing, nothing, (LinearAlgebra.LU{Float64, Matrix{Float64}, Ve
ctor{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), (LinearAl
gebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0,
0), Int64[], 0), Int64[]), nothing, nothing, nothing, LinearAlgebra.SVD{Fl
oat64, Float64, Matrix{Float64}, Vector{Float64}}(Matrix{Float64}(undef, 0,
0), Float64[], Matrix{Float64}(undef, 0, 0)), LinearAlgebra.Cholesky{Float
64, Matrix{Float64}}(Matrix{Float64}(undef, 0, 0), 'U', 0), LinearAlgebra.C
holesky{Float64, Matrix{Float64}}([0.7155106697363188;;], 'U', 0), (LinearA
lgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}(Matrix{Float64}(undef, 0
, 0), Int32[], 0), Base.RefValue{Int32}(387486256)), (LinearAlgebra.LU{Floa
t64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[],
0), Base.RefValue{Int64}(140261301038640)), LinearAlgebra.QRPivoted{Float6
4, Matrix{Float64}, Vector{Float64}, Vector{Int64}}(Matrix{Float64}(undef,
0, 0), Float64[], Int64[]), nothing, nothing, nothing, nothing, nothing, [N
aN NaN … NaN NaN; 9.9e-322 1.06099858e-314 … 1.07963391e-315 9.9e-322; … ;
NaN NaN … NaN NaN; 1.0610003174e-314 1.0609980195e-314 … 1.061001002e-314 8
.57958907e-316], [1.93e-322, 2.08e-322, 2.27e-322, 2.37e-322, 2.77e-322, 2.
9e-322, 2.96e-322, 3.95e-322, 6.27e-322, 6.67e-322 … 6.5e-322, 6.5e-322,
6.57e-322, 6.6e-322, 6.77e-322, 6.77e-322, 6.77e-322, 6.8e-322, 7.86e-322,
7.9e-322], true, false, false), true, false, LinearSolve.InvPreconditioner{
LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0
.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.
0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.49011611
93847656e-8, 1.4901161193847656e-8, 160, LinearSolve.LinearVerbosity{SciMLL
ogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silen
t, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Si
lent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLL
ogging.Silent, SciMLLogging.Silent}(SciMLLogging.Silent(), SciMLLogging.Sil
ent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(),
SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciML
Logging.WarnLevel(), SciMLLogging.WarnLevel(), SciMLLogging.Silent(), SciML
Logging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLoggin
g.Silent(), SciMLLogging.Silent()), LinearSolve.OperatorAssumptions{Bool}(t
rue, LinearSolve.OperatorCondition.IllConditioned), LinearSolve.LinearSolve
Adjoint{Missing}(missing)), (DifferentiationInterfaceForwardDiffExt.Forward
DiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{V
ector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}}}((Partials(1.0,),), (ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}[Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,1.0e-323), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(7.9e-322,7.9e-322),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0
), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.3851e-319
,1.74835e-319), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(NaN,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.
9070735e-316,5.0e-324), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}}(4.0e-323,5.88935943e-316), Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}(9.9070747e-316,2.121995791e-314), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0) … Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,0.0), Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}}(9.9071881e-316,5.0e-324), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.0e-323,NaN), Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.9071893e-316,2.1219957
91e-314), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,
NaN), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.3043e-320,
8.7e-322), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.91832
78e-316,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(
4.38587e-319,1.74904e-319)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}}(5.9183278e-316,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(4.37826e-319,1.7447e-319), Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.0e-324,0.0), Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.2327887e-316,5.0e-324), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.6e-322,6.23278466e-
316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,3.09
e-321), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.1011
45686e-315,6.2327911e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}}(8.487983164e-314,2.93e-321), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(6.8848459e-316,9.46061483e-316) … Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.3792e-319,1.7453e-3
19), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(3.5e-323,
0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.232907
3e-316,2.5e-323), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(4.0e-323,3.8266238966e-313), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}}(6.23290848e-316,2.121995791e-314), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(4.654345586956763e-38,NaN), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.228918334e-315,4.8e-322
)])), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobian
Prep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}},
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}}((Partials(1.0,),), (ForwardDiff.Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(NaN,1.0e-323), Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}}(7.9e-322,7.9e-322), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.3851e-319,1.74835e-319), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.9070735e-316,5.0e-
324), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.0e-323
,5.88935943e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}(9.9070747e-316,2.121995791e-314), Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}(0.0,0.0) … Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(NaN,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(9.9071881e-316,5.0e-324), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(4.0e-323,NaN), Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}(9.9071893e-316,2.121995791e-314), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,NaN), Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.3043e-320,8.7e-322), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0), Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.38587e-319,1.749
04e-319)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}(5.9183278e-316,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}}(4.37826e-319,1.7447e-319), Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}(5.0e-324,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(6.2327887e-316,5.0e-324), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(1.6e-322,6.23278466e-316), Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,3.09e-321), Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.101145686e-315,6.23279
11e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(8.48
7983164e-314,2.93e-321), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}}(6.8848459e-316,9.46061483e-316) … Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(4.3792e-319,1.7453e-319), Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(3.5e-323,0.0), Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(6.2329073e-316,2.5e-323),
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.0e-323,3.826
6238966e-313), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(6.23290848e-316,2.121995791e-314), Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}}(4.654345586956763e-38,NaN), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(1.228918334e-315,4.8e-322)])), ())), (Diffe
rentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{Sci
MLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Auto
Specialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{Function
Wrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, M
odelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vecto
r{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}
}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vecto
r{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tup
le{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{},
Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing,
Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Di
agonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Modeling
Toolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, Modeling
Toolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquar
esProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float
64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullS
pecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
(0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e),
Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingTool
kit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, Modeli
ngToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Un
ion{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.u
pdate_initializeprob!), ComposedFunction{ComposedFunction{typeof(identity),
typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndepen
dentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true),
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0x
ece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{Modeli
ngToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, F
loat64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApp
licator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d6
20c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x733
96493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Return
s{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initiali
zationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.va
r"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicat
or{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit
.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e
1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa
8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothing}}}}, Retu
rns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tup
le{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identi
ty), SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexi
ngInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0,
0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b
580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingToolkit.GetUpda
tedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToo
lkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07f
e, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x15096
7ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicI
ndexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.Indexer
NotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, Modeli
ngToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vect
or{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface
.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials,
Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vec
tor{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tup
le{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.D
erivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{true, Sci
MLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers
.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tu
ple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticA
rraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{
}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{
Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKPar
ameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{F
loat64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.F
unctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingT
oolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float6
4}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Fun
ctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Forw
ardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float6
4, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}},
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Modeli
ngToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.Overrid
eInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, Mod
elingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.
NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Generated
FunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8,
0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b16
1, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.UniformSca
ling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingTo
olkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Fl
oat64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Noth
ing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), ComposedFunc
tion{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_float)}
, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit
.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0
x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb,
0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, ModelingTool
kit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Re
turns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedF
unction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingT
oolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2,
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033
bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c
677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Return
s{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.Recon
structInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFuncti
on{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolki
t.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tru
e), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802
d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3
046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0,
Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tup
le{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.TimeD
ependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries, Mo
delingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3c054d
f5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Noth
ing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.Time
IndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2,
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a12
6), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e
69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultipleParametersG
etter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexi
ngInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symboli
cIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Paramet
erHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymboli
c{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKPar
ameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{F
loat64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.Aut
oForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Fl
oat64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}[Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.46056345e-316,9.4605642
4e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.186
e-321,7.9e-322), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}(0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5
.9183278e-316,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(4.30855e-319,1.69865e-319), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(3.5e-323,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}}(9.46052985e-316,5.0e-324), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(4.0e-323,NaN), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(9.46053104e-316,2.121995791e-314), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(NaN,NaN) … Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(3.5e-323,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.4606445e-316,5.0e
-324), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.0e-32
3,7.07e-322), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(
9.46064566e-316,2.121995791e-314), Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}}(9.46056424e-316,7.58728707e-316), Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}(3.2623e-320,NaN), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.22863043e-315,1.63e-322), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.1005668e-315,5
.36679717e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}(1.3597e-320,3.16e-322), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(9.60278163e-316,0.0)]), ()), DifferentiationInterfaceForwardDi
ffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappers
Wrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Not
hing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters
{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}
, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.Function
Wrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWr
appers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, M
odelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vecto
r{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardD
iff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1
}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vec
tor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, T
uple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float
64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCach
e{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase
.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, t
rue, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedV
ector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Sc
iMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a848946, 0x273d32eb, 0xa
49901f8, 0x420c0f66, 0x7c79fc2e), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdedf71c6, 0
x53f9b161, 0xe783be41, 0x11cafd93, 0xd588605e), Nothing}}, LinearAlgebra.Un
iformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Mo
delingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, V
ector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{
}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), Comp
osedFunction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe
_float)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xff46afda, 0x96e
532bd, 0x917c579f, 0xf0c4b144, 0x047573fa), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb
8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9cc206c8, 0xece1a91b), Nothing}}}}, Mode
lingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{
Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, C
omposedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, M
odelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrap
per{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0xd9f22ac5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5,
0xe3033bdb), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x73396493, 0xe5363400, 0xe61eb80
f, 0x81c677fc, 0x2d4cd368), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}
, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolk
it.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{Compos
edFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modeli
ngToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2
, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x1ea5f54b, 0x634867e1, 0xfcba7414, 0x413b347f, 0
xc880802d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8679dab, 0x0a3e799c, 0xadb0e
013, 0x3046654d, 0x14408bb6), Nothing}}}}, Returns{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Ret
urns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterfa
ce.TimeDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimese
ries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x3c054df5, 0x2a2bb003, 0x305351dd, 0x8b9585b0, 0xaa6b9926), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x9aaebada, 0xc0b065f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45
b), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterf
ace.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xf527ea7c, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0
xca71a126), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x150967ba, 0x28b4ebb8, 0xe4b6408b,
0x9694e69f, 0x00c7565d), Nothing}}}, SymbolicIndexingInterface.MultiplePar
ametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns
{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface
.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basi
cSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADT
ypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}(Va
l{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, Sci
MLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tup
le{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{
Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Flo
at64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}
}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.Siz
edVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, T
uple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tupl
e{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticA
rraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{
}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrappe
r{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKP
arameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector
{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, Linea
rAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothin
g, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.Nonlinea
rLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{V
ector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciM
LBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true)
, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x1a848946, 0x273d32eb, 0xa49901f8, 0x420c0f66, 0x7c79fc2e), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xdedf71c6, 0x53f9b161, 0xe783be41, 0x11cafd93, 0
xd588605e), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, M
odelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Noth
ing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs
{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Modeli
ngToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{typeof
(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.
TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0xff46afda, 0x96e532bd, 0x917c579f, 0xf0c4b144, 0x047
573fa), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
ModelingToolkit.var"#_RGF_ModTag", (0xb8266bdb, 0x8c2d0d57, 0x3f9fda4d, 0x9
cc206c8, 0xece1a91b), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#
810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PCon
structorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false
, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd9f22a
c5, 0xaa2d620c, 0xca4f54f8, 0xf8daf6a5, 0xe3033bdb), Nothing}, RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0x73396493, 0xe5363400, 0xe61eb80f, 0x81c677fc, 0x2d4cd368), Nothing}
}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolk
it.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Modelin
gToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstruc
torApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Mode
lingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1ea5f54b
, 0x634867e1, 0xfcba7414, 0x413b347f, 0xc880802d), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xa8679dab, 0x0a3e799c, 0xadb0e013, 0x3046654d, 0x14408bb6), Nothin
g}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}},
Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{ty
peof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Sym
bolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunct
ionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x3c054df5, 0x2a2bb003, 0x305351dd,
0x8b9585b0, 0xaa6b9926), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9aaebada, 0xc0b0
65f3, 0x64b580ad, 0x1b4ffc4d, 0x9383e45b), Nothing}}, true}}}, ModelingTool
kit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf527ea7c
, 0x0bab07fe, 0xbba84ff3, 0x6ad4af77, 0xca71a126), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x150967ba, 0x28b4ebb8, 0xe4b6408b, 0x9694e69f, 0x00c7565d), Nothing}}}
, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingInterf
ace.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameterInde
x{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothin
g}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleS
etters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, No
thing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Siz
edVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, T
uple{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, For
wardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(9.46056345e-316,9.46056424e-316), Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.186e-321,7.9e-322), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.9183278e-316,0.0), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.30855e-319,1.69865e-
319), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(3.5e-323
,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.46052
985e-316,5.0e-324), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(4.0e-323,NaN), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(9.46053104e-316,2.121995791e-314), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(NaN,NaN) … Dual{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}}(3.5e-323,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(9.4606445e-316,5.0e-324), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(4.0e-323,7.07e-322), Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.46064566e-316,2.121995791e
-314), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.46056
424e-316,7.58728707e-316), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(3.2623e-320,NaN), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(1.22863043e-315,1.63e-322), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(1.1005668e-315,5.36679717e-316), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.3597e-320,3.16e-322), D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(9.60278163e-316
,0.0)]), ())), 1.0e-8, OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.AutoForw
ardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing
, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, nothing,
typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.tri
vial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDiffEqCo
re.trivial_limiter!, OrdinaryDiffEqCore.trivial_limiter!, ADTypes.AutoForwa
rdDiff(chunksize=1, tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}())), OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_li
miter!, 3), Bool[1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 0, 0, 0, 0, 0, 0, 0, 0, 0
, 0], false), true, 0, SciMLBase.DEStats(2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
, 0.0), nothing, SciMLBase.ReturnCode.InitialFailure, nothing, nothing, not
hing)High Tolerances
abstols = 1.0 ./ 10.0 .^ (5:8)
reltols = 1.0 ./ 10.0 .^ (1:4)
setups = [
Dict(:prob_choice => 1, :alg => Rodas4()),
Dict(:prob_choice => 1, :alg => Rodas5P()),
Dict(:prob_choice => 1, :alg => FBDF()),
Dict(:prob_choice => 1, :alg => QNDF()),
Dict(:prob_choice => 1, :alg => radau()),
Dict(:prob_choice => 1, :alg => RadauIIA5()),
Dict(:prob_choice => 2, :alg => IDA()),
Dict(:prob_choice => 2, :alg => DASKR.daskr()),
Dict(:prob_choice => 3, :alg => Rodas5P()),
Dict(:prob_choice => 3, :alg => Rodas4()),
Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["Rodas4 (MM)" "Rodas5P (MM)" "FBDF (MM)" "QNDF (MM)" "radau (MM)" "RadauIIA5 (MM)" "IDA (DAE)" "DASKR (DAE)" "Rodas5P (MTK)" "Rodas4 (MTK)" "FBDF (MTK)"]
wp = WorkPrecisionSet(probs, abstols, reltols, setups;
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: All Formulations (High Tol)")EXIT OF RADAU AT X= 0.1214E+02
STEP SIZE T0O SMALL, H= 5.0133522828558592E-015
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.8215429480205D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.5601530317483D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.4539434351175D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.2259870950881D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
Solver performance differs significantly across formulations, particularly between residual DAE, mass-matrix ODE, and MTK index-reduced forms.
abstols = 1.0 ./ 10.0 .^ (6:8)
reltols = 1.0 ./ 10.0 .^ (2:4)
setups = [
Dict(:prob_choice => 1, :alg => Rodas4()),
Dict(:prob_choice => 1, :alg => Rodas5P()),
Dict(:prob_choice => 1, :alg => FBDF()),
Dict(:prob_choice => 2, :alg => IDA()),
Dict(:prob_choice => 2, :alg => DASKR.daskr()),
Dict(:prob_choice => 3, :alg => Rodas5P()),
Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["Rodas4 (MM)" "Rodas5P (MM)" "FBDF (MM)" "IDA (DAE)" "DASKR (DAE)" "Rodas5P (MTK)" "FBDF (MTK)"]
wp = WorkPrecisionSet(probs, abstols, reltols, setups;
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: MM vs DAE vs MTK (High Tol)")DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.5601530317483D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.4539434351175D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.2259870950881D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
Timeseries Errors
abstols = 1.0 ./ 10.0 .^ (5:8)
reltols = 1.0 ./ 10.0 .^ (1:4)
setups = [
Dict(:prob_choice => 1, :alg => Rodas4()),
Dict(:prob_choice => 1, :alg => Rodas5P()),
Dict(:prob_choice => 1, :alg => FBDF()),
Dict(:prob_choice => 1, :alg => QNDF()),
Dict(:prob_choice => 1, :alg => radau()),
Dict(:prob_choice => 1, :alg => RadauIIA5()),
Dict(:prob_choice => 2, :alg => IDA()),
Dict(:prob_choice => 2, :alg => DASKR.daskr()),
Dict(:prob_choice => 3, :alg => Rodas5P()),
Dict(:prob_choice => 3, :alg => Rodas4()),
Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["Rodas4 (MM)" "Rodas5P (MM)" "FBDF (MM)" "QNDF (MM)" "radau (MM)" "RadauIIA5 (MM)" "IDA (DAE)" "DASKR (DAE)" "Rodas5P (MTK)" "Rodas4 (MTK)" "FBDF (MTK)"]
wp = WorkPrecisionSet(probs, abstols, reltols, setups; error_estimate = :l2,
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: Timeseries (L2)")EXIT OF RADAU AT X= 0.1214E+02
STEP SIZE T0O SMALL, H= 5.0133522828558592E-015
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.8215429480205D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.5601530317483D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.4539434351175D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.2259870950881D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
abstols = 1.0 ./ 10.0 .^ (6:8)
reltols = 1.0 ./ 10.0 .^ (2:4)
setups = [
Dict(:prob_choice => 1, :alg => Rodas4()),
Dict(:prob_choice => 1, :alg => Rodas5P()),
Dict(:prob_choice => 1, :alg => FBDF()),
Dict(:prob_choice => 2, :alg => IDA()),
Dict(:prob_choice => 2, :alg => DASKR.daskr()),
Dict(:prob_choice => 3, :alg => Rodas5P()),
Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["Rodas4 (MM)" "Rodas5P (MM)" "FBDF (MM)" "IDA (DAE)" "DASKR (DAE)" "Rodas5P (MTK)" "FBDF (MTK)"]
wp = WorkPrecisionSet(probs, abstols, reltols, setups; error_estimate = :l2,
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: MM vs DAE vs MTK Timeseries (L2)")DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.5601530317483D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.4539434351175D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.2259870950881D-01
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
Low Tolerances
This measures solver performance when high accuracy is needed.
abstols = 1.0 ./ 10.0 .^ (7:12)
reltols = 1.0 ./ 10.0 .^ (4:9)
setups = [
Dict(:prob_choice => 1, :alg => Rodas5()),
Dict(:prob_choice => 1, :alg => Rodas5P()),
Dict(:prob_choice => 1, :alg => Rodas4()),
Dict(:prob_choice => 1, :alg => FBDF()),
Dict(:prob_choice => 1, :alg => QNDF()),
Dict(:prob_choice => 1, :alg => radau()),
Dict(:prob_choice => 1, :alg => RadauIIA5()),
Dict(:prob_choice => 2, :alg => IDA()),
Dict(:prob_choice => 2, :alg => DASKR.daskr()),
Dict(:prob_choice => 3, :alg => Rodas5P()),
Dict(:prob_choice => 3, :alg => Rodas4()),
Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["Rodas5 (MM)" "Rodas5P (MM)" "Rodas4 (MM)" "FBDF (MM)" "QNDF (MM)" "radau (MM)" "RadauIIA5 (MM)" "IDA (DAE)" "DASKR (DAE)" "Rodas5P (MTK)" "Rodas4 (MTK)" "FBDF (MTK)"]
wp = WorkPrecisionSet(probs, abstols, reltols, setups;
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: Low Tolerances")EXIT OF RADAU AT X= 0.1180E+01
STEP SIZE T0O SMALL, H= 6.5713944532016449E-016
EXIT OF RADAU AT X= 0.1000E-05
STEP SIZE T0O SMALL, H= 9.2241777164184738E-022
EXIT OF RADAU AT X= 0.0000E+00
STEP SIZE T0O SMALL, H= 1.4821969375237396E-323
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.1873886096282D+00
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.1241937757417D+00
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.5198073331053D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.8316917329686D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.3326766931874D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.5322827090999D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
wp = WorkPrecisionSet(probs, abstols, reltols, setups; error_estimate = :l2,
names = labels, save_everystep = false, appxsol = refs,
maxiters = Int(1e7), numruns = 5)
plot(wp, title = "Fekete Problem: Low Tolerances (L2)")EXIT OF RADAU AT X= 0.1180E+01
STEP SIZE T0O SMALL, H= 6.5713944532016449E-016
EXIT OF RADAU AT X= 0.1000E-05
STEP SIZE T0O SMALL, H= 9.2241777164184738E-022
EXIT OF RADAU AT X= 0.0000E+00
STEP SIZE T0O SMALL, H= 1.4821969375237396E-323
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.1873886096282D+00
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT CURRENT T (=R1) 500 STEPS
In above message, R1 = 0.1241937757417D+00
DASKR-- TAKEN ON THIS CALL BEFORE REACHING TOUT
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.5198073331053D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.8316917329686D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.3326766931874D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
DASKR-- AT T (=R1) AND STEPSIZE H (=R2) THE
In above, R1 = 0.0000000000000D+00 R2 = 0.5322827090999D-12
DASKR-- NONLINEAR SOLVER FAILED TO CONVERGE
DASKR-- REPEATEDLY OR WITH ABS(H)=HMIN
Conclusion
Appendix
These benchmarks are a part of the SciMLBenchmarks.jl repository, found at: https://github.com/SciML/SciMLBenchmarks.jl. For more information on high-performance scientific machine learning, check out the SciML Open Source Software Organization https://sciml.ai.
To locally run this benchmark, do the following commands:
using SciMLBenchmarks
SciMLBenchmarks.weave_file("benchmarks/DAE","fekete.jmd")Computer Information:
Julia Version 1.10.11
Commit a2b11907d7b (2026-03-09 14:59 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 128 × AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-15.0.7 (ORCJIT, znver2)
Threads: 1 default, 0 interactive, 1 GC (on 128 virtual cores)
Environment:
JULIA_CPU_THREADS = 128
JULIA_DEPOT_PATH = /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d937f953:
Package Information:
Status `/cache/build/exclusive-amdci3-0/julialang/scimlbenchmarks-dot-jl/benchmarks/DAE/Project.toml`
[165a45c3] DASKR v2.9.1
[e993076c] DASSL v2.8.0
[f3b72e0c] DiffEqDevTools v2.49.0
⌅ [961ee093] ModelingToolkit v9.84.0
[09606e27] ODEInterfaceDiffEq v3.16.0
⌃ [1dea7af3] OrdinaryDiffEq v6.107.0
[91a5bcdd] Plots v1.41.6
[31c91b34] SciMLBenchmarks v0.1.3
[90137ffa] StaticArrays v1.9.18
⌅ [c3572dad] Sundials v4.28.0
[10745b16] Statistics v1.10.0
Info Packages marked with ⌃ and ⌅ have new versions available. Those with ⌃ may be upgradable, but those with ⌅ are restricted by compatibility constraints from upgrading. To see why use `status --outdated`And the full manifest:
Status `/cache/build/exclusive-amdci3-0/julialang/scimlbenchmarks-dot-jl/benchmarks/DAE/Manifest.toml`
[47edcb42] ADTypes v1.21.0
[1520ce14] AbstractTrees v0.4.5
[7d9f7c33] Accessors v0.1.43
[79e6a3ab] Adapt v4.5.0
[66dad0bd] AliasTables v1.1.3
[ec485272] ArnoldiMethod v0.4.0
[4fba245c] ArrayInterface v7.23.0
[4c555306] ArrayLayouts v1.12.2
[e2ed5e7c] Bijections v0.2.2
[d1d4a3ce] BitFlags v0.1.9
[62783981] BitTwiddlingConvenienceFunctions v0.1.6
[8e7c35d0] BlockArrays v1.9.3
[70df07ce] BracketingNonlinearSolve v1.11.0
[fa961155] CEnum v0.5.0
[2a0fbf3d] CPUSummary v0.2.7
[d360d2e6] ChainRulesCore v1.26.0
[fb6a15b2] CloseOpenIntervals v0.1.13
[944b1d66] CodecZlib v0.7.8
[35d6a980] ColorSchemes v3.31.0
[3da002f7] ColorTypes v0.12.1
[c3611d14] ColorVectorSpace v0.11.0
[5ae59095] Colors v0.13.1
⌅ [861a8166] Combinatorics v1.0.2
⌅ [a80b9123] CommonMark v0.10.3
[38540f10] CommonSolve v0.2.6
[bbf7d656] CommonSubexpressions v0.3.1
[f70d9fcc] CommonWorldInvalidations v1.0.0
[34da2185] Compat v4.18.1
[b152e2b5] CompositeTypes v0.1.4
[a33af91c] CompositionsBase v0.1.2
[2569d6c7] ConcreteStructs v0.2.3
[f0e56b4a] ConcurrentUtilities v2.5.1
[8f4d0f93] Conda v1.10.3
[187b0558] ConstructionBase v1.6.0
[d38c429a] Contour v0.6.3
[adafc99b] CpuId v0.3.1
[165a45c3] DASKR v2.9.1
[e993076c] DASSL v2.8.0
[9a962f9c] DataAPI v1.16.0
⌅ [864edb3b] DataStructures v0.18.22
[e2d170a0] DataValueInterfaces v1.0.0
[8bb1440f] DelimitedFiles v1.9.1
[2b5f629d] DiffEqBase v6.210.1
[459566f4] DiffEqCallbacks v4.12.0
[f3b72e0c] DiffEqDevTools v2.49.0
[77a26b50] DiffEqNoiseProcess v5.27.0
[163ba53b] DiffResults v1.1.0
[b552c78f] DiffRules v1.15.1
[a0c0ee7d] DifferentiationInterface v0.7.16
[8d63f2c5] DispatchDoctor v0.4.28
[b4f34e82] Distances v0.10.12
[31c24e10] Distributions v0.25.123
[ffbed154] DocStringExtensions v0.9.5
[5b8099bc] DomainSets v0.7.16
⌃ [7c1d4256] DynamicPolynomials v0.6.3
[06fc5a27] DynamicQuantities v1.12.0
[4e289a0a] EnumX v1.0.7
[f151be2c] EnzymeCore v0.8.18
[460bff9d] ExceptionUnwrapping v0.1.11
[d4d017d3] ExponentialUtilities v1.30.0
[e2ba6199] ExprTools v0.1.10
[55351af7] ExproniconLite v0.10.14
[c87230d0] FFMPEG v0.4.5
[7034ab61] FastBroadcast v0.3.5
[9aa1b823] FastClosures v0.3.2
[442a2c76] FastGaussQuadrature v1.1.0
[a4df4552] FastPower v1.3.1
[1a297f60] FillArrays v1.16.0
[64ca27bc] FindFirstFunctions v1.8.0
[6a86dc24] FiniteDiff v2.29.0
[53c48c17] FixedPointNumbers v0.8.5
[1fa38f19] Format v1.3.7
[f6369f11] ForwardDiff v1.3.2
[069b7b12] FunctionWrappers v1.1.3
[77dc65aa] FunctionWrappersWrappers v0.1.3
[46192b85] GPUArraysCore v0.2.0
[28b8d3ca] GR v0.73.24
[c145ed77] GenericSchur v0.5.6
[d7ba0133] Git v1.5.0
[c27321d9] Glob v1.4.0
⌃ [86223c79] Graphs v1.13.1
[42e2da0e] Grisu v1.0.2
[cd3eb016] HTTP v1.11.0
⌅ [eafb193a] Highlights v0.5.3
[34004b35] HypergeometricFunctions v0.3.28
[7073ff75] IJulia v1.34.4
[615f187c] IfElse v0.1.1
[d25df0c9] Inflate v0.1.5
[18e54dd8] IntegerMathUtils v0.1.3
[8197267c] IntervalSets v0.7.13
[3587e190] InverseFunctions v0.1.17
[92d709cd] IrrationalConstants v0.2.6
[82899510] IteratorInterfaceExtensions v1.0.0
[1019f520] JLFzf v0.1.11
[692b3bcd] JLLWrappers v1.7.1
⌅ [682c06a0] JSON v0.21.4
[ae98c720] Jieko v0.2.1
[98e50ef6] JuliaFormatter v2.3.0
⌅ [70703baa] JuliaSyntax v0.4.10
[ccbc3e58] JumpProcesses v9.23.1
[ba0b0d4f] Krylov v0.10.6
[b964fa9f] LaTeXStrings v1.4.0
[23fbe1c1] Latexify v0.16.10
[10f19ff3] LayoutPointers v0.1.17
[87fe0de2] LineSearch v0.1.6
⌃ [d3d80556] LineSearches v7.5.1
[7ed4a6bd] LinearSolve v3.65.0
[2ab3a3ac] LogExpFunctions v0.3.29
[e6f89c97] LoggingExtras v1.2.0
[d8e11817] MLStyle v0.4.17
[1914dd2f] MacroTools v0.5.16
[d125e4d3] ManualMemory v0.1.8
[bb5d69b7] MaybeInplace v0.1.4
[739be429] MbedTLS v1.1.10
[442fdcdd] Measures v0.3.3
[e1d29d7a] Missings v1.2.0
⌅ [961ee093] ModelingToolkit v9.84.0
[2e0e35c7] Moshi v0.3.7
[46d2c3a1] MuladdMacro v0.2.4
⌃ [102ac46a] MultivariatePolynomials v0.5.9
[ffc61752] Mustache v1.0.21
[d8a4904e] MutableArithmetics v1.6.7
⌅ [d41bc354] NLSolversBase v7.10.0
[2774e3e8] NLsolve v4.5.1
[77ba4419] NaNMath v1.1.3
[8913a72c] NonlinearSolve v4.16.0
⌃ [be0214bd] NonlinearSolveBase v2.11.2
[5959db7a] NonlinearSolveFirstOrder v2.0.0
[9a2c21bd] NonlinearSolveQuasiNewton v1.12.0
[26075421] NonlinearSolveSpectralMethods v1.6.0
[54ca160b] ODEInterface v0.5.0
[09606e27] ODEInterfaceDiffEq v3.16.0
[6fe1bfb0] OffsetArrays v1.17.0
[4d8831e6] OpenSSL v1.6.1
[bac558e1] OrderedCollections v1.8.1
⌃ [1dea7af3] OrdinaryDiffEq v6.107.0
[89bda076] OrdinaryDiffEqAdamsBashforthMoulton v1.9.0
⌃ [6ad6398a] OrdinaryDiffEqBDF v1.14.0
⌃ [bbf590c4] OrdinaryDiffEqCore v3.1.0
[50262376] OrdinaryDiffEqDefault v1.13.0
⌅ [4302a76b] OrdinaryDiffEqDifferentiation v1.22.0
[9286f039] OrdinaryDiffEqExplicitRK v1.9.0
⌃ [e0540318] OrdinaryDiffEqExponentialRK v1.12.0
⌃ [becaefa8] OrdinaryDiffEqExtrapolation v1.13.0
⌃ [5960d6e9] OrdinaryDiffEqFIRK v1.20.0
[101fe9f7] OrdinaryDiffEqFeagin v1.8.0
[d3585ca7] OrdinaryDiffEqFunctionMap v1.9.0
[d28bc4f8] OrdinaryDiffEqHighOrderRK v1.9.0
⌃ [9f002381] OrdinaryDiffEqIMEXMultistep v1.11.0
[521117fe] OrdinaryDiffEqLinear v1.10.0
[1344f307] OrdinaryDiffEqLowOrderRK v1.10.0
⌃ [b0944070] OrdinaryDiffEqLowStorageRK v1.11.0
⌃ [127b3ac7] OrdinaryDiffEqNonlinearSolve v1.19.0
⌃ [c9986a66] OrdinaryDiffEqNordsieck v1.8.0
⌃ [5dd0a6cf] OrdinaryDiffEqPDIRK v1.10.0
[5b33eab2] OrdinaryDiffEqPRK v1.8.0
[04162be5] OrdinaryDiffEqQPRK v1.8.0
[af6ede74] OrdinaryDiffEqRKN v1.10.0
⌃ [43230ef6] OrdinaryDiffEqRosenbrock v1.22.0
⌃ [2d112036] OrdinaryDiffEqSDIRK v1.11.0
[669c94d9] OrdinaryDiffEqSSPRK v1.11.0
⌃ [e3e12d00] OrdinaryDiffEqStabilizedIRK v1.10.0
[358294b1] OrdinaryDiffEqStabilizedRK v1.8.0
[fa646aed] OrdinaryDiffEqSymplecticRK v1.11.0
[b1df2697] OrdinaryDiffEqTsit5 v1.9.0
[79d7bb75] OrdinaryDiffEqVerner v1.11.0
[90014a1f] PDMats v0.11.37
[69de0a69] Parsers v2.8.3
[ccf2f8ad] PlotThemes v3.3.0
[995b91a9] PlotUtils v1.4.4
[91a5bcdd] Plots v1.41.6
[e409e4f3] PoissonRandom v0.4.7
[f517fe37] Polyester v0.7.19
[1d0040c9] PolyesterWeave v0.2.2
⌃ [d236fae5] PreallocationTools v0.4.34
⌅ [aea7be01] PrecompileTools v1.2.1
[21216c6a] Preferences v1.5.2
[27ebfcd6] Primes v0.5.7
[43287f4e] PtrArrays v1.4.0
[1fd47b50] QuadGK v2.11.2
[3cdcf5f2] RecipesBase v1.3.4
[01d81517] RecipesPipeline v0.6.12
[731186ca] RecursiveArrayTools v3.48.0
[189a3867] Reexport v1.2.2
[05181044] RelocatableFolders v1.0.1
[ae029012] Requires v1.3.1
[ae5879a3] ResettableStacks v1.2.0
[79098fc4] Rmath v0.9.0
[47965b36] RootedTrees v2.25.0
[7e49a35a] RuntimeGeneratedFunctions v0.5.17
[9dfe8606] SCCNonlinearSolve v1.11.0
[94e857df] SIMDTypes v0.1.0
[0bca4576] SciMLBase v2.149.0
[31c91b34] SciMLBenchmarks v0.1.3
[19f34311] SciMLJacobianOperators v0.1.12
[a6db7da4] SciMLLogging v1.9.1
[c0aeaf25] SciMLOperators v1.15.1
[431bcebd] SciMLPublic v1.0.1
[53ae85a6] SciMLStructures v1.10.0
[6c6a2e73] Scratch v1.3.0
[efcf1570] Setfield v1.1.2
[992d4aef] Showoff v1.0.3
[777ac1f9] SimpleBufferStream v1.2.0
[727e6d20] SimpleNonlinearSolve v2.11.0
[699a6c99] SimpleTraits v0.9.5
[a2af1166] SortingAlgorithms v1.2.2
[0a514795] SparseMatrixColorings v0.4.24
[276daf66] SpecialFunctions v2.7.1
[860ef19b] StableRNGs v1.0.4
[aedffcd0] Static v1.3.1
[0d7ed370] StaticArrayInterface v1.9.0
[90137ffa] StaticArrays v1.9.18
[1e83bf80] StaticArraysCore v1.4.4
[82ae8749] StatsAPI v1.8.0
[2913bbd2] StatsBase v0.34.10
[4c63d2b9] StatsFuns v1.5.2
[7792a7ef] StrideArraysCore v0.5.8
[69024149] StringEncodings v0.3.7
[09ab397b] StructArrays v0.7.2
⌅ [c3572dad] Sundials v4.28.0
[2efcf032] SymbolicIndexingInterface v0.3.46
⌅ [19f23fe9] SymbolicLimits v0.2.3
⌅ [d1185830] SymbolicUtils v3.32.0
⌅ [0c5d862f] Symbolics v6.58.0
[3783bdb8] TableTraits v1.0.1
[bd369af6] Tables v1.12.1
[ed4db957] TaskLocalValues v0.1.3
[62fd8b95] TensorCore v0.1.1
[8ea1fca8] TermInterface v2.0.0
[1c621080] TestItems v1.0.0
[8290d209] ThreadingUtilities v0.5.5
[a759f4b9] TimerOutputs v0.5.29
[3bb67fe8] TranscodingStreams v0.11.3
[410a4b4d] Tricks v0.1.13
[781d530d] TruncatedStacktraces v1.4.0
[5c2747f8] URIs v1.6.1
[3a884ed6] UnPack v1.0.2
[1cfade01] UnicodeFun v0.4.1
[1986cc42] Unitful v1.28.0
[a7c27f48] Unityper v0.1.6
[41fe7b60] Unzip v0.2.0
[81def892] VersionParsing v1.3.0
[44d3d7a6] Weave v0.10.12
[ddb6d928] YAML v0.4.16
[c2297ded] ZMQ v1.5.1
[6e34b625] Bzip2_jll v1.0.9+0
[83423d85] Cairo_jll v1.18.5+1
[655fdf9c] DASKR_jll v1.0.1+0
[ee1fde0b] Dbus_jll v1.16.2+0
[2702e6a9] EpollShim_jll v0.0.20230411+1
[2e619515] Expat_jll v2.7.3+0
[b22a6f82] FFMPEG_jll v8.0.1+0
[a3f928ae] Fontconfig_jll v2.17.1+0
[d7e528f0] FreeType2_jll v2.13.4+0
[559328eb] FriBidi_jll v1.0.17+0
[0656b61e] GLFW_jll v3.4.1+0
[d2c73de3] GR_jll v0.73.24+0
[b0724c58] GettextRuntime_jll v0.22.4+0
[61579ee1] Ghostscript_jll v9.55.1+0
[020c3dae] Git_LFS_jll v3.7.0+0
[f8c6e375] Git_jll v2.53.0+0
[7746bdde] Glib_jll v2.86.3+0
[3b182d85] Graphite2_jll v1.3.15+0
[2e76f6c2] HarfBuzz_jll v8.5.1+0
[1d5cc7b8] IntelOpenMP_jll v2025.2.0+0
[aacddb02] JpegTurbo_jll v3.1.4+0
[c1c5ebd0] LAME_jll v3.100.3+0
[88015f11] LERC_jll v4.0.1+0
[1d63c593] LLVMOpenMP_jll v18.1.8+0
[dd4b983a] LZO_jll v2.10.3+0
⌅ [e9f186c6] Libffi_jll v3.4.7+0
[7e76a0d4] Libglvnd_jll v1.7.1+1
[94ce4f54] Libiconv_jll v1.18.0+0
[4b2f31a3] Libmount_jll v2.41.3+0
[89763e89] Libtiff_jll v4.7.2+0
[38a345b3] Libuuid_jll v2.41.3+0
[856f044c] MKL_jll v2025.2.0+0
[c771fb93] ODEInterface_jll v0.0.2+0
[e7412a2a] Ogg_jll v1.3.6+0
[9bd350c2] OpenSSH_jll v10.2.1+0
[458c3c95] OpenSSL_jll v3.5.5+0
[efe28fd5] OpenSpecFun_jll v0.5.6+0
[91d4177d] Opus_jll v1.6.1+0
[36c8627f] Pango_jll v1.57.0+0
⌅ [30392449] Pixman_jll v0.44.2+0
[c0090381] Qt6Base_jll v6.10.2+1
[629bc702] Qt6Declarative_jll v6.10.2+1
[ce943373] Qt6ShaderTools_jll v6.10.2+1
[6de9746b] Qt6Svg_jll v6.10.2+0
[e99dba38] Qt6Wayland_jll v6.10.2+1
[f50d1b31] Rmath_jll v0.5.1+0
⌅ [fb77eaff] Sundials_jll v5.2.2+0
[a44049a8] Vulkan_Loader_jll v1.3.243+0
[a2964d1f] Wayland_jll v1.24.0+0
[ffd25f8a] XZ_jll v5.8.2+0
[f67eecfb] Xorg_libICE_jll v1.1.2+0
[c834827a] Xorg_libSM_jll v1.2.6+0
[4f6342f7] Xorg_libX11_jll v1.8.13+0
[0c0b7dd1] Xorg_libXau_jll v1.0.13+0
[935fb764] Xorg_libXcursor_jll v1.2.4+0
[a3789734] Xorg_libXdmcp_jll v1.1.6+0
[1082639a] Xorg_libXext_jll v1.3.8+0
[d091e8ba] Xorg_libXfixes_jll v6.0.2+0
[a51aa0fd] Xorg_libXi_jll v1.8.3+0
[d1454406] Xorg_libXinerama_jll v1.1.7+0
[ec84b674] Xorg_libXrandr_jll v1.5.6+0
[ea2f1a96] Xorg_libXrender_jll v0.9.12+0
[c7cfdc94] Xorg_libxcb_jll v1.17.1+0
[cc61e674] Xorg_libxkbfile_jll v1.2.0+0
[e920d4aa] Xorg_xcb_util_cursor_jll v0.1.6+0
[12413925] Xorg_xcb_util_image_jll v0.4.1+0
[2def613f] Xorg_xcb_util_jll v0.4.1+0
[975044d2] Xorg_xcb_util_keysyms_jll v0.4.1+0
[0d47668e] Xorg_xcb_util_renderutil_jll v0.3.10+0
[c22f9ab0] Xorg_xcb_util_wm_jll v0.4.2+0
[35661453] Xorg_xkbcomp_jll v1.4.7+0
[33bec58e] Xorg_xkeyboard_config_jll v2.44.0+0
[c5fb5394] Xorg_xtrans_jll v1.6.0+0
[8f1865be] ZeroMQ_jll v4.3.6+0
[3161d3a3] Zstd_jll v1.5.7+1
[35ca27e7] eudev_jll v3.2.14+0
[214eeab7] fzf_jll v0.61.1+0
[a4ae2306] libaom_jll v3.13.1+0
[0ac62f75] libass_jll v0.17.4+0
[1183f4f0] libdecor_jll v0.2.2+0
[2db6ffa8] libevdev_jll v1.13.4+0
[f638f0a6] libfdk_aac_jll v2.0.4+0
[36db933b] libinput_jll v1.28.1+0
[b53b4c65] libpng_jll v1.6.55+0
[a9144af2] libsodium_jll v1.0.21+0
[f27f6e37] libvorbis_jll v1.3.8+0
[009596ad] mtdev_jll v1.1.7+0
[1317d2d5] oneTBB_jll v2022.0.0+1
⌅ [1270edf5] x264_jll v10164.0.1+0
[dfaa095f] x265_jll v4.1.0+0
[d8fb68d0] xkbcommon_jll v1.13.0+0
[0dad84c5] ArgTools v1.1.1
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8ba89e20] Distributed
[f43a241f] Downloads v1.6.0
[7b1f6079] FileWatching
[9fa8497b] Future
[b77e0a4c] InteractiveUtils
[4af54fe1] LazyArtifacts
[b27032c2] LibCURL v0.6.4
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[ca575930] NetworkOptions v1.2.0
[44cfe95a] Pkg v1.10.0
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA v0.7.0
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays v1.10.0
[10745b16] Statistics v1.10.0
[4607b0f0] SuiteSparse
[fa267f1f] TOML v1.0.3
[a4e569a6] Tar v1.10.0
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
[e66e0078] CompilerSupportLibraries_jll v1.1.1+0
[deac9b47] LibCURL_jll v8.4.0+0
[e37daf67] LibGit2_jll v1.6.4+0
[29816b5a] LibSSH2_jll v1.11.0+1
[c8ffd9c3] MbedTLS_jll v2.28.2+1
[14a3606d] MozillaCACerts_jll v2023.1.10
[4536629a] OpenBLAS_jll v0.3.23+4
[05823500] OpenLibm_jll v0.8.5+0
[efcefdf7] PCRE2_jll v10.42.0+1
[bea87d4a] SuiteSparse_jll v7.2.1+1
[83775a58] Zlib_jll v1.2.13+1
[8e850b90] libblastrampoline_jll v5.11.0+0
[8e850ede] nghttp2_jll v1.52.0+1
[3f19e933] p7zip_jll v17.4.0+2
Info Packages marked with ⌃ and ⌅ have new versions available. Those with ⌃ may be upgradable, but those with ⌅ are restricted by compatibility constraints from upgrading. To see why use `status --outdated -m`