Slider-Crank DAE Work-Precision Diagrams

This is a benchmark of the Slider-Crank mechanism with elastic connecting rod, an index-2 DAE of dimension 24 from the IVP Test Set (Simeon 1998, crank.f).

The system models a crank-rod-slider mechanism where the connecting rod is treated as a flexible beam with 4 finite-element modes (2 lateral, 2 axial). The crank angle is prescribed as φ₁(t) = Ωt with Ω = 150 rad/s.

Variables (17 state variables):

  • 7 positions: φ₁, φ₂, x₃, q₁, q₂, q₃, q₄
  • 7 velocities: v₁, v₂, vx₃, vq₁, vq₂, vq₃, vq₄
  • 3 Lagrange multipliers: λ₁, λ₂, λ₃

We benchmark three formulations of this problem:

  1. DAE Residual Form:F(du, u, t) = M·du − f(u, t) = 0, solved with dedicated DAE solvers (IDA from Sundials).
  2. MTK Index-Reduced ODE: The system defined symbolically with position-level constraints, automatically index-reduced by structural_simplify to a 13-state ODE.
  3. Mass-Matrix ODE Form:M·du/dt = f(u, t), solved with ODE solvers that handle singular mass matrices (Rosenbrock-W methods, multistep BDF).

The mass matrix is frozen at t = 0, which limits achievable tolerance to around 1e-7.

Reference: Simeon, B.: Modelling a flexible slider crank mechanism by a mixed system of DAEs and PDEs, Math. Modelling of Systems 2, 1-18 (1996).

using OrdinaryDiffEq, Sundials, DiffEqDevTools, ModelingToolkit, Plots
using LinearAlgebra
using ModelingToolkit: t_nounits as t, D_nounits as D

# ── Physical Parameters (from crank.f) ──────────────────────────────

const M1    = 0.36
const M2    = 0.151104
const M3    = 0.075552
const L1    = 0.15
const L2    = 0.30
const J1    = 0.002727
const J2    = 0.0045339259
const PI_   = 3.1415927
const EE    = 0.20e12
const NUE   = 0.30
const BB    = 0.0080
const HH    = 0.0080
const RHO   = 7870.0
const GRAV  = 0.0
const OMEGA = 150.0

const NQ = 4
const NP = 7
const NL = 3
const KU = 4
const KV = 0

# ── FE Matrices (exact port of FIRST block in RESMBS) ───────────────

function initialize_fe_matrices()
    FACM = RHO * BB * HH * L2
    FACK = EE * BB * HH / L2
    FACB = BB * HH * L2

    MQ_ = zeros(NQ, NQ)
    MQ_[1,1] = FACM * 0.5
    MQ_[2,2] = FACM * 0.5
    MQ_[3,3] = FACM * 8.0
    MQ_[3,4] = FACM * 1.0
    MQ_[4,3] = FACM * 1.0
    MQ_[4,4] = FACM * 2.0

    KQ_ = zeros(NQ, NQ)
    KQ_[1,1] = FACK * PI_^4 / 24.0 * (HH/L2)^2
    KQ_[2,2] = FACK * PI_^4 * 2.0 / 3.0 * (HH/L2)^2
    KQ_[3,3] = FACK * 16.0 / 3.0
    KQ_[3,4] = -FACK * 8.0 / 3.0
    KQ_[4,3] = -FACK * 8.0 / 3.0
    KQ_[4,4] = FACK * 7.0 / 3.0

    BQ_ = zeros(NQ, NQ)
    BQ_[1,3] = -FACB * 16.0 / PI_^3
    BQ_[1,4] =  FACB * (8.0 / PI_^3 - 1.0 / PI_)
    BQ_[2,4] =  FACB * 0.5 / PI_
    BQ_[3,1] =  FACB * 16.0 / PI_^3
    BQ_[4,1] = -FACB * (8.0 / PI_^3 - 1.0 / PI_)
    BQ_[4,2] = -FACB * 0.5 / PI_

    DQ_ = zeros(NQ, NQ)

    c1_  = zeros(NQ);  c2_  = zeros(NQ)
    c12_ = zeros(NQ);  c21_ = zeros(NQ)

    c1_[3]  = FACB * 2.0 / 3.0
    c1_[4]  = FACB * 1.0 / 6.0
    c2_[1]  = FACB * 2.0 / PI_
    c12_[3] = L2 * FACB * 1.0 / 3.0
    c12_[4] = L2 * FACB * 1.0 / 6.0
    c21_[1] = L2 * FACB * 1.0 / PI_
    c21_[2] = -L2 * FACB * 0.5 / PI_

    return MQ_, KQ_, BQ_, DQ_, c1_, c2_, c12_, c21_
end

const MQ, KQ, BQ, DQ, c1, c2, c12, c21 = initialize_fe_matrices()
([0.075552 0.0 0.0 0.0; 0.0 0.075552 0.0 0.0; 0.0 0.0 1.208832 0.151104; 0.
0 0.0 0.151104 0.302208], [123144.33964567189 0.0 0.0 0.0; 0.0 1.9703094343
307503e6 0.0 0.0; 0.0 0.0 2.2755555555555558e8 -1.1377777777777779e8; 0.0 0
.0 -1.1377777777777779e8 9.955555555555557e7], [0.0 0.0 -9.90767093878593e-
6 -1.1577142550509449e-6; 0.0 0.0 0.0 3.055774862221955e-6; 9.9076709387859
3e-6 0.0 0.0 0.0; 1.1577142550509449e-6 -3.055774862221955e-6 0.0 0.0], [0.
0 0.0 0.0 0.0; 0.0 0.0 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.28e-5, 3.2e-6], [1.222309944888782e-5, 0.0, 0.0, 0.0], [0.0, 0.0, 1.92
e-6, 9.6e-7], [1.833464917333173e-6, -9.167324586665865e-7, 0.0, 0.0])

Consistent Initial Conditions

The Fortran reference code (init1 in crank.f) provides positions and velocities. We ensure full consistency by:

  1. Using init1 positions (which satisfy the position-level constraints).
  2. Projecting init1 velocities onto the constraint manifold via minimum-norm correction.
  3. Computing consistent accelerations and Lagrange multipliers by solving the augmented saddle-point system [AM GP'; GP 0] * [w; λ] = [F; γ].
function build_GP(p1, p2, q)
    cosp1 = cos(p1); sinp1 = sin(p1)
    cosp2 = cos(p2); sinp2 = sin(p2)
    qku = (KU == 0) ? 0.0 : q[KU]
    qkv = (KV == 0) ? 0.0 : q[KV]
    GP = zeros(3, NP)
    GP[1,1] = L1 * cosp1
    GP[1,2] = L2 * cosp2 + qku * cosp2 - qkv * sinp2
    GP[2,1] = L1 * sinp1
    GP[2,2] = L2 * sinp2 + qku * sinp2 + qkv * cosp2
    GP[2,3] = 1.0
    GP[3,1] = 1.0
    if KU != 0
        GP[1, 3+KU] = sinp2
        GP[2, 3+KU] = -cosp2
    end
    return GP
end

function build_AM(p1, p2, q)
    cosp12 = cos(p1 - p2); sinp12 = sin(p1 - p2)
    c1Tq = dot(c1, q); c2Tq = dot(c2, q)
    c12Tq = dot(c12, q); qtmqq = dot(q, MQ * q)
    QtBQ = zeros(NQ)
    for i in 1:NQ
        QtBQ[i] = dot(q, @view BQ[:, i])
    end

    AM = zeros(NP, NP)
    AM[1,1] = J1 + M2 * L1^2
    AM[1,2] = 0.5 * L1 * L2 * M2 * cosp12 +
              RHO * L1 * (sinp12 * c2Tq + cosp12 * c1Tq)
    AM[2,2] = J2 + qtmqq + 2.0 * RHO * c12Tq
    AM[3,3] = M3
    for i in 1:NQ
        AM[1, 3+i] = RHO * L1 * (-sinp12 * c1[i] + cosp12 * c2[i])
        AM[2, 3+i] = RHO * c21[i] + RHO * QtBQ[i]
    end
    for i in 1:NQ, j in 1:i
        AM[3+j, 3+i] = MQ[j, i]
    end
    for i in 1:NP, j in i+1:NP
        AM[j, i] = AM[i, j]
    end
    return AM
end

function compute_force_vector(p1, p2, q, v1, v2, vq)
    cosp12 = cos(p1 - p2); sinp12 = sin(p1 - p2)
    cosp1 = cos(p1); sinp1 = sin(p1)
    cosp2 = cos(p2); sinp2 = sin(p2)
    c1Tq = dot(c1, q); c1Tqd = dot(c1, vq)
    c2Tq = dot(c2, q); c2Tqd = dot(c2, vq)
    c12Tqd = dot(c12, vq)
    MQq = MQ * q; KQq = KQ * q; DQqd = DQ * vq; BQqd = BQ * vq
    qdtmqq = dot(vq, MQq); qdtbqqd = dot(vq, BQqd)

    F = zeros(NP)
    F[1] = -0.5 * L1 * GRAV * (M1 + 2.0 * M2) * cosp1 -
            0.5 * L1 * L2 * M2 * v2^2 * sinp12
    F[2] = -0.5 * L2 * GRAV * M2 * cosp2 +
            0.5 * L1 * L2 * M2 * v1^2 * sinp12
    F[3] = 0.0
    F[1] += RHO * L1 * v2^2 * (-sinp12 * c1Tq + cosp12 * c2Tq) -
            2.0 * RHO * L1 * v2 * (cosp12 * c1Tqd + sinp12 * c2Tqd)
    F[2] += RHO * L1 * v1^2 * (sinp12 * c1Tq - cosp12 * c2Tq) -
            2.0 * RHO * v2 * c12Tqd - 2.0 * v2 * qdtmqq -
            RHO * qdtbqqd - RHO * GRAV * (cosp2 * c1Tq - sinp2 * c2Tq)
    for i in 1:NQ
        F[3+i] = v2^2 * MQq[i] +
            RHO * (v2^2 * c12[i] + L1 * v1^2 * (cosp12 * c1[i] + sinp12 * c2[i]) +
                   2.0 * v2 * BQqd[i]) -
            RHO * GRAV * (sinp2 * c1[i] + cosp2 * c2[i])
        F[3+i] -= KQq[i] + DQqd[i]
    end
    return F
end

function get_consistent_ic()
    # Step 1: Positions from init1 (satisfy position constraints)
    p1 = 0.0;  p2 = 0.0;  x3 = 0.450016933
    q = [0.0, 0.0, 0.103339863e-04, 0.169327969e-04]
    pos = [p1, p2, x3, q...]

    # Step 2: Project init1 velocities onto constraint manifold
    v_init1 = [150.0, -74.9957670, -0.268938672e-05,
               0.444896105, 0.463434311e-02,
               -0.178591076e-05, -0.268938672e-05]
    GP0 = build_GP(p1, p2, q)
    target = [0.0, 0.0, OMEGA]
    residual_v = GP0 * v_init1 - target
    v_fixed = v_init1 - GP0' * ((GP0 * GP0') \ residual_v)

    # Step 3: Compute accelerations and multipliers
    AM0 = build_AM(p1, p2, q)
    F0 = compute_force_vector(p1, p2, q, v_fixed[1], v_fixed[2], v_fixed[4:7])

    # dGP/dt * v via finite differences
    eps_fd = 1e-8
    pos_p = pos .+ eps_fd .* v_fixed
    GP_p = build_GP(pos_p[1], pos_p[2], pos_p[4:7])
    dGPdt_v = (GP_p - GP0) / eps_fd * v_fixed

    # Augmented saddle-point system: [AM GP'; GP 0] [w; λ] = [F; -dGP/dt*v]
    n = NP + NL
    Aug = zeros(n, n)
    Aug[1:NP, 1:NP] = AM0
    Aug[1:NP, NP+1:n] = GP0'
    Aug[NP+1:n, 1:NP] = GP0
    rhs = zeros(n)
    rhs[1:NP] = F0
    rhs[NP+1:n] = -dGPdt_v
    sol = Aug \ rhs
    w_0 = sol[1:NP]
    lam_0 = sol[NP+1:n]

    return pos, v_fixed, w_0, lam_0, AM0, GP0
end

pos0, vel0, w0, lam0, AM0, GP0 = get_consistent_ic()

# Verify constraints
g1 = L1 * sin(pos0[1]) + (L2 + pos0[7]) * sin(pos0[2])
g2 = pos0[3] - L1 * cos(pos0[1]) - (L2 + pos0[7]) * cos(pos0[2])
g3 = pos0[1]
println("Position constraints: ", [g1, g2, g3])
println("Velocity constraint norm: ", norm(GP0 * vel0 - [0, 0, OMEGA]))
Position constraints: [0.0, 2.0309998127743256e-10, 0.0]
Velocity constraint norm: 0.0

Mass-Matrix ODE Formulation

The index-2 DAE is reformulated as a singular mass-matrix ODE with 17 state variables u = [p; v; λ]. The mass matrix M has the structure:

M = [I   0   0 ]    du = [v            ]
    [0  AM   0 ]         [F - Gᵀλ      ]
    [0   0   0 ]         [G*v - r'(t)   ]

where AM is the 7×7 generalized mass matrix (frozen at t=0) and G is the 3×7 constraint Jacobian (evaluated at current state).

function slider_crank_mm!(du, u, p, t)
    T = eltype(u)
    p1, p2, x3 = u[1], u[2], u[3]
    q  = @view u[4:7]
    v1, v2 = u[8], u[9]
    vq = @view u[11:14]
    lam1, lam2, lam3 = u[15], u[16], u[17]

    cosp1  = cos(p1);  sinp1  = sin(p1)
    cosp2  = cos(p2);  sinp2  = sin(p2)
    cosp12 = cos(p1 - p2);  sinp12 = sin(p1 - p2)

    qku = (KU == 0) ? zero(T) : q[KU]
    qkv = (KV == 0) ? zero(T) : q[KV]

    c1Tq   = dot(c1, q);    c1Tqd  = dot(c1, vq)
    c2Tq   = dot(c2, q);    c2Tqd  = dot(c2, vq)
    c12Tqd = dot(c12, vq)
    MQq  = MQ * q;   KQq  = KQ * q
    DQqd = DQ * vq;  BQqd = BQ * vq

    qtmqq   = dot(q, MQq)
    qdtmqq  = dot(vq, MQq)
    qdtbqqd = dot(vq, BQqd)

    QtBQ = zeros(T, NQ)
    for i in 1:NQ
        QtBQ[i] = dot(q, @view BQ[:, i])
    end

    # Constraint Jacobian GP (3×7) — evaluated at current state
    GP = zeros(T, 3, NP)
    GP[1,1] = L1 * cosp1
    GP[1,2] = L2 * cosp2 + qku * cosp2 - qkv * sinp2
    GP[2,1] = L1 * sinp1
    GP[2,2] = L2 * sinp2 + qku * sinp2 + qkv * cosp2
    GP[2,3] = one(T)
    GP[3,1] = one(T)
    if KU != 0
        GP[1, 3+KU] =  sinp2
        GP[2, 3+KU] = -cosp2
    end

    # Force vector F (7)
    F = zeros(T, NP)
    F[1] = -0.5 * L1 * GRAV * (M1 + 2.0 * M2) * cosp1 -
            0.5 * L1 * L2 * M2 * v2^2 * sinp12
    F[2] = -0.5 * L2 * GRAV * M2 * cosp2 +
            0.5 * L1 * L2 * M2 * v1^2 * sinp12
    F[3] = zero(T)

    F[1] += RHO * L1 * v2^2 * (-sinp12 * c1Tq + cosp12 * c2Tq) -
            2.0 * RHO * L1 * v2 * (cosp12 * c1Tqd + sinp12 * c2Tqd)
    F[2] += RHO * L1 * v1^2 * (sinp12 * c1Tq - cosp12 * c2Tq) -
            2.0 * RHO * v2 * c12Tqd - 2.0 * v2 * qdtmqq -
            RHO * qdtbqqd - RHO * GRAV * (cosp2 * c1Tq - sinp2 * c2Tq)

    for i in 1:NQ
        F[3+i] = v2^2 * MQq[i] +
            RHO * (v2^2 * c12[i] + L1 * v1^2 * (cosp12 * c1[i] + sinp12 * c2[i]) +
                   2.0 * v2 * BQqd[i]) -
            RHO * GRAV * (sinp2 * c1[i] + cosp2 * c2[i])
        F[3+i] -= KQq[i] + DQqd[i]
    end

    # Block 1 (rows 1:7): I * dp/dt = v
    for i in 1:7
        du[i] = u[7+i]
    end

    # Block 2 (rows 8:14): AM * dv/dt = F - Gᵀλ
    for i in 1:NP
        du[7+i] = F[i] - GP[1,i] * lam1 - GP[2,i] * lam2 - GP[3,i] * lam3
    end

    # Block 3 (rows 15:17): 0 * dλ/dt = G*v - r'(t)
    for k in 1:3
        vlc = zero(T)
        for i in 1:NP
            vlc += GP[k, i] * u[NP+i]
        end
        if k == 3
            vlc -= OMEGA
        end
        du[14+k] = vlc
    end
    nothing
end

function build_mass_matrix(AM)
    Mfull = zeros(17, 17)
    for i in 1:7
        Mfull[i, i] = 1.0        # identity block for dp/dt = v
    end
    Mfull[8:14, 8:14] .= AM      # AM block for dv/dt equations
    # rows 15:17 are zero → algebraic (velocity constraints)
    return Mfull
end

u0_mm = vcat(pos0, vel0, lam0)
M_mm = build_mass_matrix(AM0)
mmf = ODEFunction(slider_crank_mm!, mass_matrix = M_mm)
tspan = (0.0, 0.1)
prob_mm = ODEProblem(mmf, u0_mm, tspan)
ODEProblem with uType Vector{Float64} and tType Float64. In-place: true
Non-trivial mass matrix: true
timespan: (0.0, 0.1)
u0: 17-element Vector{Float64}:
   0.0
   0.0
   0.450016933
   0.0
   0.0
   1.03339863e-5
   1.69327969e-5
 150.0
 -74.99576703969453
  -2.68938672e-6
   0.444896105
   0.00463434311
  -1.78591076e-6
  -2.68938672e-6
  -2.303851027879405e-5
 382.45895095266985
  -6.339193797155536e-7

DAE Residual Form

The same system can be written as a DAE residual F(du, u, t) = M·du − f(u, t) = 0, where M is the mass matrix and f is the right-hand side from the ODE form. This enables testing DAE-specific solvers like IDA (Sundials) and comparing how formulation choice affects solver performance.

function slider_crank_dae!(res, du, u, p, t)
    f = similar(u)
    slider_crank_mm!(f, u, p, t)
    res .= M_mm * du - f
    nothing
end

du0_dae = vcat(vel0, w0, zeros(3))
differential_vars = [trues(14); falses(3)]
prob_dae = DAEProblem(slider_crank_dae!, du0_dae, u0_mm, tspan,
                      differential_vars = differential_vars)

# Verify DAE consistency at initial conditions
f_check = similar(u0_mm)
slider_crank_mm!(f_check, u0_mm, nothing, 0.0)
println("DAE residual norm at IC: ", norm(M_mm * du0_dae - f_check))
DAE residual norm at IC: 6.940448042111208e-15

MTK Index-Reduced Formulation

ModelingToolkit can automatically reduce the DAE index via structural_simplify. We define the full system symbolically — with the 7 kinematic equations, 7 dynamics equations (involving the configuration-dependent mass matrix), and the 3 position-level holonomic constraints — and let MTK differentiate and eliminate the Lagrange multipliers, producing a 13-state ODE.

@variables begin
    φ1(t) = pos0[1]
    φ2(t) = pos0[2]
    x₃(t) = pos0[3]
    q₁(t) = pos0[4]
    q₂(t) = pos0[5]
    q₃(t) = pos0[6]
    q₄(t) = pos0[7]
    vφ1(t) = vel0[1]
    vφ2(t) = vel0[2]
    vx₃(t) = vel0[3]
    vq₁(t) = vel0[4]
    vq₂(t) = vel0[5]
    vq₃(t) = vel0[6]
    vq₄(t) = vel0[7]
    λ₁(t) = lam0[1]
    λ₂(t) = lam0[2]
    λ₃(t) = lam0[3]
end

pvec = [φ1, φ2, x₃, q₁, q₂, q₃, q₄]
vvec = [vφ1, vφ2, vx₃, vq₁, vq₂, vq₃, vq₄]
qvec = [q₁, q₂, q₃, q₄]
vqvec = [vq₁, vq₂, vq₃, vq₄]
λvec = [λ₁, λ₂, λ₃]

# Symbolic trigonometric quantities
sφ1 = sin(φ1); cφ1 = cos(φ1)
sφ2 = sin(φ2); cφ2 = cos(φ2)
sφ12 = sin(φ1 - φ2); cφ12 = cos(φ1 - φ2)

# Dot products with FE vectors (Float64 constants × symbolic variables)
c1q = sum(c1 .* qvec); c2q = sum(c2 .* qvec); c12q = sum(c12 .* qvec)
c1vq = sum(c1 .* vqvec); c2vq = sum(c2 .* vqvec); c12vq = sum(c12 .* vqvec)

# Matrix-vector products (Float64 FE matrices × symbolic vectors)
MQq_s = MQ * qvec; KQq_s = KQ * qvec
DQvq_s = DQ * vqvec; BQvq_s = BQ * vqvec

# Quadratic forms
qMQq_s = sum(qvec .* MQq_s)
vqMQq_s = sum(vqvec .* MQq_s)
vqBQvq_s = sum(vqvec .* BQvq_s)
QBQ_s = [sum(qvec .* BQ[:,i]) for i in 1:NQ]

# AM(φ,q) × D(v) — configuration-dependent mass matrix × acceleration
am_dv = [
    (J1 + M2*L1^2)*D(vφ1) +
        (0.5*L1*L2*M2*cφ12 + RHO*L1*(sφ12*c2q + cφ12*c1q))*D(vφ2) +
        sum(RHO*L1*(-sφ12*c1[i] + cφ12*c2[i])*D(vqvec[i]) for i in 1:NQ),
    (0.5*L1*L2*M2*cφ12 + RHO*L1*(sφ12*c2q + cφ12*c1q))*D(vφ1) +
        (J2 + qMQq_s + 2*RHO*c12q)*D(vφ2) +
        sum((RHO*c21[i] + RHO*QBQ_s[i])*D(vqvec[i]) for i in 1:NQ),
    M3*D(vx₃),
    [RHO*L1*(-sφ12*c1[k] + cφ12*c2[k])*D(vφ1) +
        (RHO*c21[k] + RHO*QBQ_s[k])*D(vφ2) +
        sum(MQ[k,j]*D(vqvec[j]) for j in 1:NQ)
        for k in 1:NQ]...
]

# Force vector F(φ,v,q,vq)
F_s = [
    -0.5*L1*GRAV*(M1+2*M2)*cφ1 - 0.5*L1*L2*M2*vφ2^2*sφ12 +
        RHO*L1*vφ2^2*(-sφ12*c1q + cφ12*c2q) -
        2*RHO*L1*vφ2*(cφ12*c1vq + sφ12*c2vq),
    -0.5*L2*GRAV*M2*cφ2 + 0.5*L1*L2*M2*vφ1^2*sφ12 +
        RHO*L1*vφ1^2*(sφ12*c1q - cφ12*c2q) -
        2*RHO*vφ2*c12vq - 2*vφ2*vqMQq_s - RHO*vqBQvq_s -
        RHO*GRAV*(cφ2*c1q - sφ2*c2q),
    0,
    [vφ2^2*MQq_s[i] + RHO*(vφ2^2*c12[i] +
        L1*vφ1^2*(cφ12*c1[i] + sφ12*c2[i]) + 2*vφ2*BQvq_s[i]) -
        RHO*GRAV*(sφ2*c1[i] + cφ2*c2[i]) - KQq_s[i] - DQvq_s[i]
        for i in 1:NQ]...
]

# Constraint Jacobian GP(φ,q) and GP' × λ
GP_rows = [
    [L1*cφ1, (L2+q₄)*cφ2, 0, 0, 0, 0, sφ2],
    [L1*sφ1, (L2+q₄)*sφ2, 1, 0, 0, 0, -cφ2],
    [1,      0,            0, 0, 0, 0, 0     ]
]
GPt_λ = [sum(GP_rows[k][i]*λvec[k] for k in 1:3) for i in 1:NP]

# 17 equations: 7 kinematic + 7 dynamics + 3 holonomic constraints
eqs = vcat(
    [D(pvec[i]) ~ vvec[i] for i in 1:NP],
    [am_dv[i] ~ F_s[i] - GPt_λ[i] for i in 1:NP],
    [0 ~ L1*sφ1 + (L2 + q₄)*sφ2,
     0 ~ x₃ - L1*cφ1 - (L2 + q₄)*cφ2,
     0 ~ φ1 - OMEGA*t]
)

@mtkbuild sys = ODESystem(eqs, t)
prob_mtk = ODEProblem(sys, [], tspan; warn_initialize_determined = false)
println("MTK index-reduced: $(length(ModelingToolkit.unknowns(sys))) states ",
        "(from 17 original)")
MTK index-reduced: 13 states (from 17 original)

Reference Solution

We compute a high-accuracy reference solution using Rodas5P at moderate tolerance. The frozen mass matrix limits how tight we can push tolerances before instability sets in, so reltol = abstol = 1e-6 provides the best balance of accuracy and stability for this problem.

ref_sol = solve(prob_mm, Rodas5P(), reltol = 1e-6, abstol = 1e-6,
                maxiters = 10_000_000);
println("Reference solution: retcode = $(ref_sol.retcode), ",
        "npoints = $(length(ref_sol.t)), t_final = $(ref_sol.t[end])")

mtk_ref = solve(prob_mtk, Rodas5P(), reltol = 1e-5, abstol = 1e-5,
                maxiters = 10_000_000);
println("MTK reference: retcode = $(mtk_ref.retcode), ",
        "npoints = $(length(mtk_ref.t)), t_final = $(mtk_ref.t[end])")
Reference solution: retcode = Success, npoints = 11178, t_final = 0.1
MTK reference: retcode = Success, npoints = 3621, t_final = 0.1
plot(ref_sol, idxs = [2, 3], title = "φ₂ and x₃",
     xlabel = "t", ylabel = "value", lw = 2)

plot(ref_sol, idxs = [4, 5], title = "Lateral Elastic Modes q₁, q₂",
     xlabel = "t", ylabel = "amplitude", lw = 2)

plot(ref_sol, idxs = [6, 7], title = "Axial Elastic Modes q₃, q₄",
     xlabel = "t", ylabel = "amplitude", lw = 2)

plot(ref_sol, idxs = [15, 16, 17], title = "Lagrange Multipliers λ₁, λ₂, λ₃",
     xlabel = "t", ylabel = "force", lw = 2)

DAE vs Mass-Matrix: Solver Performance

A key question for this benchmark is how problem formulation affects solver performance. We test DAE-specific solvers on the residual form.

println("=== DAE Solver Results ===")
println("Testing IDA (Sundials) on DAE residual form:")
try
    dae_sol = solve(prob_dae, IDA(), reltol = 1e-4, abstol = 1e-4)
    println("  IDA result: retcode = $(dae_sol.retcode), t_final = $(dae_sol.t[end])")
catch e
    println("  IDA failed: $(typeof(e))")
end

println("\nTesting IDA with modified initialization:")
try
    dae_sol2 = solve(prob_dae, IDA(init_all = false), reltol = 1e-4, abstol = 1e-4)
    println("  IDA (init_all=false): retcode = $(dae_sol2.retcode), t_final = $(dae_sol2.t[end])")
catch e
    println("  IDA (init_all=false) failed: $(typeof(e))")
end
=== DAE Solver Results ===
Testing IDA (Sundials) on DAE residual form:
  IDA result: retcode = Unstable, t_final = 0.0002465164025475332

Testing IDA with modified initialization:
  IDA (init_all=false): retcode = Unstable, t_final = 0.0002465164025475332

IDA fails with ConvergenceFailure at the first step on this problem, even with fully consistent initial conditions (DAE residual norm ≈ 7×10⁻²¹). The extreme stiffness from the elastic modulus (E = 2×10¹¹ Pa) causes the Newton solver to diverge, with step size collapsing to h ≈ 10⁻¹⁷. DASKR and DASSL exhibit the same failure mode.

This demonstrates that formulation choice critically affects solver performance for this problem: the mass-matrix ODE form avoids DAE solver difficulties by letting Rosenbrock-W methods handle the algebraic constraints through the singular mass matrix structure.

Work-Precision Diagrams

We compare solvers across all three formulations using WorkPrecisionSet with prob_choice to overlay DAE, MTK, and mass-matrix results on the same plot. IDA operates on the DAE residual form, the MTK index-reduced form is solved with Rosenbrock-W methods, and the mass-matrix ODE form uses Rosenbrock-W and BDF methods. The tolerance range is limited by the frozen mass matrix (instability above ~1e-7). The MTK form's overdetermined initialization system limits it to tolerances above ~1e-5.

probs = [prob_dae, prob_mtk, prob_mm]
refs  = [ref_sol, mtk_ref, ref_sol]
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".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothi
ng, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciMLBas
e.StandardODEProblem}, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForw
ardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, N
othing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, no
thing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCo
re.trivial_limiter!)}, OrdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFu
nction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".
slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof
(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{V
ector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing,
 OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64},
 Float64, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq
Rosenbrock.RodasTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{tr
ue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"#
#WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing,
 Nothing}, Vector{Float64}, SciMLBase.NullParameters}, SciMLBase.UJacobianW
rapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(M
ain.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing,
 Nothing, Nothing}, Float64, SciMLBase.NullParameters}, LinearSolve.LinearC
ache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParam
eters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit
{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.Q
RCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Fl
oat64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Mat
rix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, Li
nearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, Linear
Algebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64,
 Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{
Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Floa
t64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float6
4, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Noth
ing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPr
econditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgeb
ra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity
{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLog
ging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
 SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAd
joint{Missing}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTw
oArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 9}}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDi
ffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, 
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 9}}}}, Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffEx
t.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true,
 SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##We
aveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, No
thing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, ADType
s.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}
, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tu
ple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBa
se.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), M
atrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_O
BSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.N
ullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64,
 ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock
.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS
), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limite
r!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCor
e.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, Ordinary
DiffEqCore.DifferentialVarsUndefined}, SciMLBase.DEStats, Nothing, Nothing,
 Nothing, Nothing}([[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.6932
7969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463434
311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095266
985, -6.339193797155536e-7], [0.00015000000000000096, -7.499576682940676e-5
, 0.4500169304662131, 4.448961052636021e-7, 4.63434311592467e-9, 1.03339823
79911499e-5, 1.6932794315479788e-5, 150.0, -74.99576640815987, -0.005064884
50368873, 0.444896105824963, 0.004634343127775004, -6.054169584992515e-6, -
2.47977849610951e-6, 0.06633307975256669, 382.4589986509165, -0.02694417633
375928], [0.00030346004349877573, -0.0001517214564432677, 0.450016922635282
8, 9.000546114972841e-7, 9.375586460700212e-9, 1.0333973952809054e-5, 1.693
2791887546723e-5, 150.0, -74.99576445216772, -0.010243850561905663, 0.44489
61085180174, 0.004634343182686087, -1.0419742862265787e-5, -2.2670489653288
746e-6, 0.1341963690599594, 382.459172880821, -0.05450987701921593], [0.000
5015101859710008, -0.00025074093262395197, 0.45001690469755357, 1.487466199
7899658e-6, 1.549446872075291e-8, 1.0333956477602698e-5, 1.693278907269476e
-5, 150.0, -74.9957599696659, -0.01692764725306674, 0.4448961147590913, 0.0
046343433081191395, -1.605031743433838e-5, -1.998148870487642e-6, 0.2217784
4269185154, 382.45958222640934, -0.09008523290046067], [0.00074039733206012
13, -0.00037017774685971374, 0.45001687131923174, 2.1959992962262974e-6, 2.
2875035873089427e-8, 1.0333925513299973e-5, 1.6932786140135973e-5, 150.0, -
74.99575162696239, -0.024989623539144558, 0.4448961264376182, 0.00463434354
0181322, -2.2833542079900397e-5, -1.687687855988195e-6, 0.3274197692616649,
 382.4603533091788, -0.13299613415557263], [0.001026076084043756, -0.000513
0090189330409, 0.45001681454498926, 3.0433151152644683e-6, 3.17012594179958
3e-8, 1.0333874314727199e-5, 1.6932783257358433e-5, 150.0, -74.995737435056
38, -0.034630751562149904, 0.44489614637379493, 0.004634343930813733, -3.09
2795000110172e-5, -1.3458597346916303e-6, 0.45375394666783836, 382.46167163
45697, -0.18431229207526867], [0.0013588073446756405, -0.000679365170391077
7, 0.4500167252725207, 4.030187519386913e-6, 4.198120071422105e-8, 1.033379
5282905683e-5, 1.6932780664311376e-5, 150.0, -74.99571511819076, -0.0458598
6399317161, 0.44489617781645624, 0.004634344534596813, -4.032266036809754e-
5, -1.0035719088735577e-6, 0.6008968994900165, 382.46374749559607, -0.24408
073976409575], [0.001740586686285242, -0.0008702438947217648, 0.45001659215
344697, 5.162535375758511e-6, 5.377651515804742e-8, 1.0333678994036453e-5, 
1.6932778510456533e-5, 150.0, -74.99568183924133, -0.05874435208168425, 0.4
448962248481436, 0.0046343454111998795, -5.104499706866777e-5, -7.085018401
089483e-7, 0.7697320071785777, 382.46683774260936, -0.3126602060042485], [0
.0021723943418506444, -0.0010861352258557267, 0.45001640206928745, 6.443266
107952237e-6, 6.711748901974743e-8, 1.0333514702596691e-5, 1.69327767659110
32e-5, 150.0, -74.9956343188636, -0.07331736380253197, 0.44489629225066823,
 0.004634346613801736, -6.307870192179609e-5, -5.350298871481906e-7, 0.9606
941001032608, 382.4712301132461, -0.39022716644614525], [0.0026528194528358
338, -0.0013263336978551104, 0.4500161412806057, 7.868195255525723e-6, 8.19
605347001388e-8, 1.0333291418107752e-5, 1.6932775041336885e-5, 150.0, -74.9
9556912303368, -0.0895313780009222, 0.4448963851425868, 0.00463434817026643
2, -7.632275342330097e-5, -5.89627232483452e-7, 1.173161085869231, 382.4772
095984531, -0.4765287336688831]  …  [14.984326033266097, -0.337433846609929
03, 0.17066384816348634, 0.0001925670949836511, 2.4336366748648265e-5, -5.3
86650914862699e-6, -8.467722006862385e-6, 150.0, 59.566762549226176, -8.980
837245398131, -0.03360403817608118, -0.005563232710122797, 0.00062019571077
76033, 0.0007847214162413029, -64.3334282966124, -165.32058470424687, -18.4
6243029179165], [14.986242913520385, -0.33667208827259476, 0.17054925886423
62, 0.00019214049594764538, 2.4265333699461173e-5, -5.37872618426043e-6, -8
.45744788765731e-6, 150.0, 59.651651351019304, -8.952884000168048, -0.03316
1123042279625, -0.005553664394563368, 0.0006187827878562012, 0.000824604808
3912312, -64.11932271845029, -165.20267763443766, -18.429634461922937], [14
.988159793774674, -0.33590924668289884, 0.1704350266525003, 0.0001917195357
8593913, 2.4194425374568393e-5, -5.370866167627896e-6, -8.4466161108339e-6,
 150.0, 59.73629571530283, -8.924951958631235, -0.032721450745209886, -0.00
5543765503541297, 0.0006102586533010521, 0.0008715776087878277, -63.8985363
1157582, -165.06903288699928, -18.397226052246108], [14.990076674028963, -0
.335145324984915, 0.17032115123861555, 0.00019130417643464318, 2.4123643805
991987e-5, -5.36315357428237e-6, -8.435153747933248e-6, 150.0, 59.820692327
79677, -8.89704416909985, -0.03228446840503514, -0.005533891760450871, 0.00
05959637126418777, 0.0009227585268194381, -63.669373345660134, -164.9153225
2116804, -18.365385794203267], [14.991993554283251, -0.3343803263693563, 0.
1702076322898355, 0.00019089438770765417, 2.4052986060156764e-5, -5.3556518
54823914e-6, -8.423028619337347e-6, 150.0, 59.90483725465455, -8.8691642808
20632, -0.0318495058514582, -0.0055244594691963465, 0.0005775504071488962, 
0.0009746939898262994, -63.43079660007186, -164.73881903247056, -18.3342208
1502363], [14.99391043453754, -0.3336142540794395, 0.17009446942447687, 0.0
001904901484001149, 2.3982443669257198e-5, -5.348402072541752e-6, -8.410254
888150922e-6, 150.0, 59.98872627013555, -8.841316251619563, -0.031415838705
2948, -0.00551591268323262, 0.0005568456165567288, 0.0010236335221000734, -
63.18251239979738, -164.53862777507547, -18.303756006441112], [14.995827314
791828, -0.33284711141237733, 0.1699816622100011, 0.00019009144655123672, 2
.3912002501702476e-5, -5.341421629614125e-6, -8.396894943775581e-6, 150.0, 
60.072355208663296, -8.813504028623818, -0.030982755958024723, -0.005508687
788191032, 0.000535699957151365, 0.0010658310890655338, -62.92499497022988,
 -164.31577070001006, -18.273932117492073], [14.997744195046117, -0.3320789
0171636645, 0.16986921016521084, 0.00018969827884406077, 2.3841643086386884
e-5, -5.334704937855167e-6, -8.38305739836016e-6, 150.0, 60.155720312579604
, -8.785731227978577, -0.030549626541498693, -0.005503178379737096, 0.00051
58362335030889, 0.0010978479544057754, -62.659448342611896, -164.0731144146
7883, -18.244610681603135], [14.999661075300406, -0.3313096283833128, 0.169
75711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.328225965
594457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.758000839578
706, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409, 0.
001116832441838903, -62.38770921173346, -163.8151483533587, -18.21558533772
592], [14.999999999998904, -0.3311735023248599, 0.1697373296153814, 0.00018
924268895326456, 2.3758915247975978e-5, -5.327102156215073e-6, -8.366365693
649003e-6, 150.0, 60.253483257566366, -8.753102401475758, -0.03003920050788
1367, -0.00549931871516871, 0.0004960535857023572, 0.001118665317438119, -6
2.339113356546875, -163.76819159511533, -18.21047117266844]], nothing, noth
ing, [0.0, 1.0e-6, 2.023066956658499e-6, 3.3434012398066557e-6, 4.935982213
734114e-6, 6.8405072269583345e-6, 9.05871563117088e-6, 1.1603911241901547e-
5, 1.448262894567087e-5, 1.768546301890546e-5  …  0.09989550688844792, 0.09
990828609014318, 0.09992106529183845, 0.09993384449353371, 0.09994662369522
897, 0.09995940289692423, 0.0999721820986195, 0.09998496130031476, 0.099997
74050201002, 0.1], [[[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.693
27969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.0046343
4311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.4589509526
6985, -6.339193797155536e-7]], [[-2.68644888130459e-19, -2.1028710514110055
e-13, 2.531097504465909e-9, -2.636037520298232e-16, -5.925709186045359e-18,
 2.134177734153846e-12, -1.0486643257935952e-13, 6.895679674685942e-22, -6.
32879179739638e-7, 1.9224276157283732e-10, -8.932668185548306e-10, -1.77717
20558451595e-11, -2.041478699358192e-10, 2.2544327438234717e-10, 0.00038801
83473319511, -5.8355519560835916e-5, 1.0630243690469483e-5], [1.71591578347
05832e-17, -2.1097779974468737e-13, 4.1581944011738246e-17, -2.976681678458
063e-16, -5.913949878934952e-18, -5.369751010934185e-17, 4.9885191137136424
e-17, 1.9036602802577233e-20, 2.488417235150416e-13, 2.6468931333899795e-10
, -5.2561424676197376e-14, 2.142152814742128e-14, -1.7168587934934325e-10, 
2.979133158640281e-10, -0.0013042580268240937, -1.2023406134695895e-5, -3.5
72636056478128e-5], [-7.449142247232344e-18, 1.2686687789430311e-17, 6.6561
2852086963e-17, -5.404560358243648e-20, -1.017494822822154e-20, -4.29580661
1458912e-17, 7.486190902461984e-17, -4.924661074765362e-20, -5.214496319572
234e-13, -4.420906625491374e-14, 9.669513300308266e-14, -5.3333286505331213
e-14, 1.3953026614421939e-14, -4.4446853140907365e-14, 0.001110092209618081
, 3.1688582012236744e-5, 3.0410841831175233e-5]], [[-1.6679374775645461e-19
, -8.876066448745893e-13, 2.649214320774772e-9, -1.2181239638309662e-15, -2
.4927501148549436e-17, 2.23328158235076e-12, -1.0904629387719927e-13, -8.37
9597200400739e-21, -6.624121975148487e-7, 1.038460273452668e-9, -9.35165374
184182e-10, -1.85468056242561e-11, -7.567997405792764e-10, 1.17833304059312
62e-9, 4.918635154529407e-9, -3.832826274161515e-5, 8.217641473217934e-9], 
[2.8286636225955885e-17, -2.2591234724324318e-13, 3.2951150329457914e-16, -
3.1879020436629335e-16, -6.36139971893541e-18, -2.4235315221372914e-16, 3.7
417699677472744e-16, -5.109026668916804e-20, -3.971250033686333e-13, 2.8328
362493135145e-10, 5.796710221579225e-14, -5.5580835099068645e-14, -1.837757
3325179876e-10, 3.188602743167965e-10, -1.053059472209983e-7, -8.8931064175
85768e-5, -6.074575688731229e-9], [-1.3545735095508755e-17, 8.5889161469825
23e-18, 7.28717408010273e-17, -1.1660964911883392e-19, 4.306816162026504e-2
0, -4.705976975802095e-17, 8.197304146935367e-17, 1.6536642574352758e-19, 2
.050792031208546e-12, -6.860910717367249e-14, -3.948738045256091e-13, 1.919
7579997479003e-13, 3.4576347247967745e-14, -6.915596401597236e-14, 3.627908
178359992e-8, 9.815084338608153e-5, 7.290426131836957e-9]], [[8.90921409513
7833e-20, -2.716416938071741e-12, 4.412422167773359e-9, -3.777153942481036e
-15, -7.607030967859443e-17, 3.717662607449115e-12, -1.7841028485975655e-13
, -1.6345870969315688e-21, -1.1032819138364779e-6, 3.281083291381012e-9, -1
.5584459749261267e-9, -3.067695054257877e-11, -2.267145334014816e-9, 3.7090
264601121193e-9, -1.569919315800795e-7, -7.776191753871322e-5, 1.7920592948
080683e-8], [1.9306313079746878e-17, -4.855808626845723e-13, 1.375861418293
8147e-15, -6.856144158814481e-16, -1.358640993383467e-17, -9.54254973583770
4e-16, 1.5557885617244117e-15, -4.660509122356508e-20, 1.005465208559602e-1
2, 6.081977708001492e-10, -2.597526810116501e-13, 2.2579071940165973e-14, -
3.9466541117537916e-10, 6.846685469856837e-10, 2.7489537209267965e-7, -0.00
010081882728926393, 8.326169232812192e-9], [-5.45342101619746e-19, 6.290183
0520281235e-18, 2.0183848492285753e-16, -3.3947852254725966e-19, 1.21906884
67283253e-19, -1.3035423374957462e-16, 2.2708300740184133e-16, 1.4810453234
419243e-19, 3.2257168147697003e-12, -3.3815208045986643e-13, -6.24897067918
3017e-13, 2.9732443314248617e-13, 1.6872503220949348e-13, -3.38465775101212
7e-13, -3.238238658212258e-7, 0.00012325354584293987, -3.7022805512392033e-
9]], [[-6.41139666954011e-19, -6.217157962554681e-12, 6.419672863015317e-9,
 -8.696760253416632e-15, -1.7317481431897158e-16, 5.402872510339046e-12, -2
.496546209769021e-13, 8.967836873052249e-21, -1.6051602774535172e-6, 7.6064
24339454942e-9, -2.2701714951664266e-9, -4.392104543986514e-11, -5.13733444
8355259e-9, 8.585753152226208e-9, -3.00572073800894e-7, -0.0001077110097701
5242, 4.183911308612285e-8], [2.790014621266635e-17, -8.521419223877949e-13
, 3.894171917825173e-15, -1.204820489920747e-15, -2.3387267147834448e-17, -
2.6353082437037084e-15, 4.396239759933859e-15, 5.468823523370809e-20, 5.275
715453407094e-12, 1.064586566936346e-9, -1.1913036912788336e-12, 2.96255056
0890637e-13, -6.912322945271892e-10, 1.1987845351993837e-9, 4.9095371487099
92e-7, -0.00016342964157084158, 1.8749907787600612e-8], [-6.503118015759026
e-18, 1.5794087552590876e-17, 4.2590682742884226e-16, -6.0488044067937385e-
19, 1.6345250240626014e-19, -2.752666050024651e-16, 4.79348524777757e-16, -
8.882663577337898e-20, 1.2325655890697214e-12, -1.0998009808038487e-12, -2.
5394371167231224e-13, 9.50619665806073e-14, 5.476382294515311e-13, -1.10010
08696764637e-12, -5.16329593518248e-7, 0.00019365802925696735, -9.826342504
051446e-9]], [[-9.218593118416116e-19, -1.2785773065742038e-11, 9.180879458
22004e-9, -1.7951193161147498e-14, -3.5274778860666507e-16, 7.7115206820336
72e-12, -3.31465315437919e-13, 2.3374090645574878e-23, -2.295529114813181e-
6, 1.573023783532498e-8, -3.253623589517809e-9, -6.103416665912717e-11, -1.
0499516022424692e-8, 1.7744130052135492e-8, -4.0889023914145056e-7, -0.0001
519896445386073, 9.011873806746463e-8], [4.012975015230849e-17, -1.45732884
12061883e-12, 9.6940510031957e-15, -2.0645922802735847e-15, -3.896704423284
6597e-17, -6.4785192136725226e-15, 1.0936143458747589e-14, 1.02408295840770
05e-19, 1.3434907722477084e-11, 1.8121994074365028e-9, -3.0128816664706924e
-12, 7.665860911939687e-13, -1.1779395653092514e-9, 2.0417065488196287e-9, 
2.992382642136383e-7, -0.00023683070277724666, 2.4907409253311606e-8], [-1.
1677262151508365e-17, 2.395403201633611e-17, 8.662895219290244e-16, -1.9208
326172752004e-18, 5.038575053241168e-19, -5.606006537041377e-16, 9.75553433
9980778e-16, -9.838608636843079e-20, 3.134214944228992e-12, -3.188597025503
8583e-12, -6.362328532997607e-13, 2.532058434861518e-13, 1.5858436478782219
e-12, -3.1880261427980117e-12, -4.555351272089849e-7, 0.0002797734882363638
6, -1.4245631222729711e-8]], [[-6.312477917705783e-19, -2.3600522411495212e
-11, 1.2454244508481196e-8, -3.3234356960055793e-14, -6.408661966024721e-16
, 1.0427182861860546e-11, -3.923488349883611e-13, -2.6947062347972443e-20, 
-3.113897167929569e-6, 2.908266046805171e-8, -4.429492198120565e-9, -7.8742
79190133463e-11, -1.928209353521366e-8, 3.27998561987377e-8, -8.01294901629
0241e-7, -0.00019955670433057586, 1.620192606820233e-7], [3.311454967702135
5e-17, -2.3024611181992188e-12, 2.0971710294220385e-14, -3.2734060895833876
e-15, -5.869231736652197e-17, -1.391584528021881e-14, 2.3653185482313918e-1
4, -1.8538033480431378e-19, 2.8254004938032305e-11, 2.84090873968618e-9, -6
.3493240699422334e-12, 1.5810614840455905e-12, -1.8500048548075993e-9, 3.20
35151390080954e-9, 7.430550338280591e-7, -0.0003351540432669211, 5.90250282
83509216e-8], [1.2141136654862322e-18, 3.163151770007981e-17, 1.57986256402
55855e-15, -4.2299356550814756e-18, 1.1255249595345094e-18, -1.024517793892
278e-15, 1.7809562748429898e-15, 5.339907917719559e-19, 4.979705991781144e-
12, -7.89047577360474e-12, -1.0194583951417038e-12, 3.9133574440957934e-13,
 3.9212202204494915e-12, -7.886669379908396e-12, -9.675368553158148e-7, 0.0
003916685785537162, -4.3731241893152035e-8]], [[-4.063173680172119e-19, -4.
06117415947143e-11, 1.639674917001976e-8, -5.736232108439756e-14, -1.075753
4789019004e-15, 1.3659811139894144e-11, -4.0042973340101123e-13, -4.6762263
09791659e-20, -4.099461536459453e-6, 4.9976453786664213e-8, -5.863500570254
9525e-9, -9.555206975123522e-11, -3.3009860165561686e-8, 5.6372874135294724
e-8, -1.3352815468897515e-6, -0.00025461246314322845, 2.742645973698752e-7]
, [5.494075829806505e-17, -3.4780000655935953e-12, 4.149200008071875e-14, -
4.971435399607585e-15, -8.182256419392239e-17, -2.7420891907609556e-14, 4.6
802539416214724e-14, -2.1373109018966815e-19, 5.848681609715172e-11, 4.2394
73949334734e-9, -1.3037004456145713e-11, 3.3743667595912344e-12, -2.7687639
93790751e-9, 4.787221912945002e-9, 1.1801090614182184e-6, -0.00045167140124
373535, 1.0963174632939791e-7], [-1.8445901292823254e-17, 2.793403495627838
e-17, 2.7008293566814983e-15, -8.712979682464227e-18, 2.2083663725596058e-1
8, -1.7571445774277823e-15, 3.0493714338953492e-15, 5.275266495249173e-19, 
2.4170981405058734e-12, -1.768523606035792e-11, -5.778760700462253e-13, 8.6
50694643264627e-14, 8.784677570440368e-12, -1.7672920992529123e-11, -1.4943
502222061313e-6, 0.0005251022811207411, -8.93614797660582e-8]], [[-1.108185
4131874582e-18, -6.588291488049572e-11, 2.0975753247767066e-8, -9.338331916
137253e-14, -1.6810757274085056e-15, 1.7347303503142017e-11, -2.95028306230
68256e-13, -3.198111202380468e-20, -5.243974806203276e-6, 8.073276177897539
e-8, -7.560344020546902e-9, -1.0707785956833474e-10, -5.322820802408817e-8,
 9.110934912770904e-8, -2.0395664575446834e-6, -0.0003125398689663399, 4.37
510508297045e-7], [4.635722455124379e-17, -5.032024933118211e-12, 7.6016508
58099943e-14, -7.24800404805605e-15, -1.04421646279849e-16, -5.013620556065
303e-14, 8.578347027586598e-14, -4.57355437474102e-19, 1.0511872728537173e-
10, 6.023431035584239e-9, -2.3468693703564796e-11, 5.984786805694499e-12, -
3.951092411364361e-9, 6.8159337440827064e-9, 1.5441172331018567e-6, -0.0005
90738102662893, 1.821062831447863e-7], [-5.014951129436326e-18, 8.008980360
468643e-17, 4.330990785675039e-15, -1.8199428332030012e-17, 4.6459291175043
15e-18, -2.8313569116193075e-15, 4.9013738278691584e-15, 1.6892369581641812
e-18, 6.732060555103941e-12, -3.6295737405619447e-11, -1.4706876109639348e-
12, 4.1063320041538605e-13, 1.802580443736974e-11, -3.626933851278851e-11, 
-2.102705846409174e-6, 0.0006836981791799891, -1.609987011831582e-7]], [[-6
.042320653859769e-19, -1.0094091593684618e-10, 2.5965330879497233e-8, -1.43
697482799756e-13, -2.438481262827989e-15, 2.1253874513392902e-11, 1.0965481
959249376e-14, 7.708298416972134e-20, -6.490834952930478e-6, 1.227916443666
5567e-7, -9.461210571829304e-9, -1.0643434622349348e-10, -8.093738041888951
e-8, 1.3868988964504084e-7, -3.1663431789963676e-6, -0.00036520761125543894
, 6.4858597218151e-7], [7.990781996831157e-17, -6.929759212642766e-12, 1.28
93820490162184e-13, -1.0088367516375508e-14, -1.168108420197975e-16, -8.500
3880912282e-14, 1.4562003983941617e-13, 5.249023265385382e-19, 1.7681512635
94142e-10, 8.081720145201641e-9, -3.9481432987294443e-11, 1.000084960702549
e-11, -5.335214093920275e-9, 9.17313190959538e-9, 2.6262067367649104e-6, -0
.00075007945674208, 3.060595222997916e-7], [-4.110839550879798e-17, 1.41247
44793963772e-16, 6.447661362456701e-15, -3.412938753318921e-17, 8.726941019
834708e-18, -4.2447130054553484e-15, 7.321606188854658e-15, -1.503007406695
4777e-18, 1.1673381371926885e-11, -6.797991770479529e-11, -2.50161129437809
67e-12, 7.67207774615985e-13, 3.376065501556329e-11, -6.793387539456807e-11
, -3.3975338053311473e-6, 0.0008637806125323104, -2.850869834160566e-7]]  …
  [[2.9336486037837262e-19, -5.442087522399419e-7, -1.7875084111898742e-7, 
-2.857212372395194e-9, -5.6569673137703235e-11, -5.113336940405205e-11, -1.
8566042620065172e-10, -9.203301077663326e-19, 0.00012047089714802024, 9.011
365856829189e-6, 1.8888024875944097e-6, -3.619388690750961e-7, 4.1946313996
85197e-6, -5.045210499000781e-6, -0.00015918550756900243, -1.69489270827203
4e-5, -0.00014725820905094205], [3.1116230413083403e-16, 5.128336225328267e
-10, 3.8077623029858716e-11, 8.096728197707873e-12, -1.5805042990283118e-12
, 1.7983631513469197e-11, -2.178245700536632e-11, 3.0103193081652624e-16, 1
.7306437174582272e-7, 1.5540196992437566e-7, -1.9716088010834108e-8, 2.1943
375380179976e-8, -4.679290320405091e-8, 1.4600052829562966e-7, -0.004947832
738611011, -0.011957223954568549, 0.000521865017958786], [-1.52913570297774
5e-16, 7.563361401827061e-13, 6.828264142689799e-13, -1.0198441888859811e-1
3, 9.013850275306016e-14, -2.3744532253376937e-13, 6.434421326498872e-13, -
8.871233378578831e-16, 4.8786094097510235e-8, 4.4721263734792686e-8, -9.341
945248841233e-9, 4.807561478617081e-9, -2.2254387907711105e-8, 4.2487401968
49164e-8, 0.004949409406797013, 0.01191860981389142, -0.0005197328296080237
]], [[2.933648444973088e-19, -5.426643690946212e-7, -1.786312873472583e-7, 
-2.833748451344581e-9, -6.062223803105835e-11, 8.69491681668701e-13, -2.459
9285201209127e-10, -1.9003647650813345e-16, 0.00012132628377865647, 9.78631
2750445978e-6, 1.7653065875301784e-6, -2.6298868958516986e-7, 3.90077936174
6304e-6, -4.314734991844327e-6, -0.0013900034665488149, -0.0030866690877980
2, -1.1764621097236174e-5], [3.1116230390553975e-16, 5.162930113516942e-10,
 4.1206789634253996e-11, 7.605854417600477e-12, -1.1771519552901084e-12, 1.
6817842360238932e-11, -1.883373507765518e-11, -2.1687246325636648e-16, 3.64
86961229810624e-7, 3.316535855831502e-7, -5.642183049468753e-8, 4.083455987
37095e-8, -1.3432980045339517e-7, 3.127126645847042e-7, -0.0049225153292294
46, -0.011900949905994702, 0.0005133559781313052], [-1.5291356945388715e-16
, 1.3419762486524381e-12, 1.2243965768897096e-12, -2.139392567965675e-13, 1
.4781253444410076e-13, -5.07199120790887e-13, 1.156121081859829e-12, 4.1930
78781727509e-16, 4.1551339234764523e-8, 3.898285231780191e-8, -7.9307483663
32455e-9, 4.09691399950161e-9, -1.9615399961049953e-8, 3.717009895952939e-8
, 0.004987353550195709, 0.012001941639603896, -0.0005170093543069789]], [[2
.933648603513183e-19, -5.411056138886046e-7, -1.7849864530568072e-7, -2.812
5203477708353e-9, -6.307139175185835e-11, 4.752860375656126e-11, -2.9397489
632555994e-10, -2.297174689433087e-16, 0.00012270434902258092, 1.1046424556
444151e-5, 1.5419703372381354e-6, -1.1256209779254121e-7, 3.364491660694715
e-6, -3.124764032115465e-6, -0.0024129443329487387, -0.005679115030157327, 
0.00010123827732831481], [3.111623041317193e-16, 5.220215584873869e-10, 4.6
43937225102078e-11, 6.681433532402955e-12, -5.503025237513068e-13, 1.460218
4912667768e-11, -1.38932367201325e-11, -2.4460911983987544e-15, 5.260511488
752205e-7, 4.823300488969307e-7, -8.71618099133622e-8, 5.6704928158373046e-
8, -2.1000805295396934e-7, 4.5553898974983406e-7, -0.004886376640348863, -0
.011783899932696238, 0.0004986042239133174], [-1.5291357029799603e-16, 1.81
6270657897931e-12, 1.6715017367823953e-12, -3.0428571461016764e-13, 1.94486
15052528997e-13, -7.329895047188003e-13, 1.5803985247932107e-12, 6.96453843
4135631e-15, 3.090116622490232e-8, 2.99878508535714e-8, -5.8690470409024985
e-9, 3.0393840319558027e-9, -1.5422828514247695e-8, 2.8763488877692222e-8, 
0.005046414004588738, 0.012103510347214512, -0.0005111458719152432]], [[2.9
336486036487985e-19, -5.395265019509334e-7, -1.783473071874014e-7, -2.79466
90747090826e-9, -6.332815445648465e-11, 8.602178728008405e-11, -3.242891430
7001334e-10, 9.512744008705647e-17, 0.00012448986777145458, 1.2692879987083
14e-5, 1.2411363563313068e-6, 7.790580193156197e-8, 2.631884506874167e-6, -
1.567911144335616e-6, -0.003143913720401274, -0.007577727512399297, 0.00018
255092348343373], [3.111623041313999e-16, 5.295399148380686e-10, 5.33657142
81752716e-11, 5.41642340136522e-12, 2.5252836051026187e-13, 1.1527698779459
991e-11, -7.344726280916553e-12, 1.9012487234768004e-15, 6.433202846378893e
-7, 5.949012589957785e-7, -1.0940705441071636e-7, 6.820431088440586e-8, -2.
6785121786476487e-7, 5.625979684588528e-7, -0.004842899612579266, -0.011618
42040072994, 0.0004787476167686354], [-1.5291357029794747e-16, 2.1403583257
657853e-12, 1.9868901016932253e-12, -3.6559107545581294e-13, 2.261751845919
4265e-13, -8.970245354527191e-13, 1.8809003310046684e-12, -6.06393845130576
1e-15, 1.7712408972751372e-8, 1.8464909010040862e-8, -3.326578811552637e-9,
 1.7216837179447503e-9, -1.0017980517685361e-8, 1.794599044332399e-8, 0.005
122184382349185, 0.012218081992967884, -0.0005025280337997038]], [[2.933648
6037070497e-19, -5.379227475890714e-7, -1.7817314431871773e-7, -2.781007114
0247534e-9, -6.097276121369219e-11, 1.1421951304985762e-10, -3.330070973524
215e-10, 1.4640520092882122e-16, 0.00012653400748934354, 1.4594584344267692
e-5, 8.915232377094232e-7, 2.9354961103596586e-7, 1.7645030830479182e-6, 2.
325407196981078e-7, -0.003522986282421673, -0.008622372719389374, 0.0002256
0537594210276], [3.11162304131385e-16, 5.382215386234548e-10, 6.14347618337
8621e-11, 3.931800684596069e-12, 1.1687855910033405e-12, 7.852982624911712e
-12, 2.9373001330961863e-13, 1.1521564094039215e-15, 7.069954807661786e-7, 
6.599216262063095e-7, -1.2132640656664773e-7, 7.434023399326318e-8, -3.0333
465781560015e-7, 6.248975362474651e-7, -0.004795684599910702, -0.0114199178
22703494, 0.000455321255772848], [-1.5291357029798868e-16, 2.28723312473826
67e-12, 2.1440054638997844e-12, -3.9280652252802464e-13, 2.401045584222912e
-13, -9.865383519061463e-13, 2.0322615859084756e-12, -2.6905566681357965e-1
5, 3.067372133878578e-9, 5.347582607934586e-9, -5.119964944776026e-10, 2.51
646115548814e-10, -3.840618742133673e-9, 5.5933869461494735e-9, 0.005208529
423131767, 0.012338655470530466, -0.0004917610651598605]], [[2.933648445105
041e-19, -5.362921179243394e-7, -1.7797385409501105e-7, -2.771951536527271e
-9, -5.579097712344434e-11, 1.3085120663713528e-10, -3.179196514182842e-10,
 8.783499964581289e-17, 0.00012866653367760045, 1.6598791674125882e-5, 5.25
8702646725265e-7, 5.172890296549318e-7, 8.343134236950126e-7, 2.13261411693
8078e-6, -0.003518982474972022, -0.008722006737249467, 0.000226970700161036
76], [3.1116230390516533e-16, 5.473433945437229e-10, 6.999880431490634e-11,
 2.3666377289370566e-12, 2.1259407488676844e-12, 3.883150372566369e-12, 8.4
11675273769897e-12, -6.236469105594341e-16, 7.117876707414616e-7, 6.7180068
90403541e-7, -1.219350543712498e-7, 7.455865829221284e-8, -3.13752868953735
2e-7, 6.370703273652324e-7, -0.004748860905895305, -0.011207051349061322, 0
.00043016210346718273], [-1.5291356945380787e-16, 2.2447238552457116e-12, 2
.129046974902008e-12, -3.836765103261197e-13, 2.3498680648887987e-13, -9.94
8273295790063e-13, 2.021200376261764e-12, 1.427996042091789e-15, -1.1833100
668628358e-8, -8.298983656192128e-9, 2.3438963663624864e-9, -1.250439717773
546e-9, 2.6068052869520404e-9, -7.2928734493575575e-9, 0.005298643207815952
, 0.01245814850326651, -0.0004796422875333918]], [[2.933648127647172e-19, -
5.346346187515714e-7, -1.7774915885510494e-7, -2.767489489818993e-9, -4.779
363238212218e-11, 1.3560167018109356e-10, -2.787282915760427e-10, -4.962997
751877954e-17, 0.00013070971926565226, 1.8543496688746117e-5, 1.78262106870
11608e-7, 7.31221545565372e-7, -8.215182991494861e-8, 3.979308361345282e-6,
 -0.0031320459834944386, -0.00786242742178328, 0.00018661133603093362], [3.
111623034550484e-16, 5.561453053082023e-10, 7.836588340732917e-11, 8.667261
471027895e-13, 3.0474797083125856e-12, -5.4988913031167264e-14, 1.635573882
0710226e-11, -8.239754617074878e-16, 6.572121235289751e-7, 6.29261387693550
6e-7, -1.1117114484916203e-7, 6.878751583446021e-8, -2.9843917651616657e-7,
 5.9781489013829e-7, -0.004706131136376704, -0.010999158347059805, 0.000405
2642694336329], [-1.5291356776641862e-16, 2.0161016973823163e-12, 1.9422603
94708208e-12, -3.3889978988141055e-13, 2.1104199472752765e-13, -9.217948456
158273e-13, 1.8476169229158486e-12, 2.597737691767792e-15, -2.5783057775909
2e-8, -2.1367485763084416e-8, 5.009927904077167e-9, -2.6631211384240393e-9,
 8.799840326916245e-9, -1.9666062484637927e-8, 0.005385145861687143, 0.0125
69187682411874, -0.00046709992746798556]], [[2.9336482863453103e-19, -5.329
524978368048e-7, -1.7750084040361175e-7, -2.7671787458235857e-9, -3.7217836
37732394e-11, 1.2912979161599335e-10, -2.1708130878078118e-10, -2.395667364
897827e-16, 0.00013249280904939004, 2.0270589201398328e-5, -1.1864553723915
944e-7, 9.180774774701452e-7, -9.100185331492696e-7, 5.623020372466823e-6, 
-0.002393311524516632, -0.006107212457133864, 0.00010787772841174555], [3.1
116230368010765e-16, 5.638921649421694e-10, 8.585608850384506e-11, -4.27281
74436021955e-13, 3.8590417664059984e-12, -3.6395137175448266e-12, 2.3482674
576991434e-11, -9.928923318948015e-16, 5.476052198549981e-7, 5.354460655469
725e-7, -8.989648366864584e-8, 5.744063273652854e-8, -2.588199102798001e-7,
 5.100073690799595e-7, -0.004671161539368623, -0.010815674862421343, 0.0003
8257929326107967], [-1.5291356861008805e-16, 1.6194477744016966e-12, 1.5978
034580446866e-12, -2.6207644448855293e-13, 1.700648908079158e-13, -7.739586
142945729e-13, 1.5246166097803682e-12, 3.3599827459369188e-15, -3.764502939
751347e-8, -3.279486204018718e-8, 7.268678848637004e-9, -3.871313118166232e
-9, 1.4234795861365984e-8, -3.0520337529339194e-8, 0.005461177115174794, 0.
012665406265106594, -0.00045508943574204145]], [[2.933648762385887e-19, -5.
312500660558711e-7, -1.772326072441362e-7, -2.7701831385106964e-9, -2.45098
26580747566e-11, 1.1300802336725376e-10, -1.3645185901812839e-10, -3.688239
122434462e-17, 0.0001338658686563475, 2.1638702678665578e-5, -3.36274815816
7004e-7, 1.0626196246815937e-6, -1.5821611626527191e-6, 6.929705941692937e-
6, -0.0013624715325143103, -0.003592929067613304, -2.8005836303821402e-6], 
[3.111623043563714e-16, 5.699331358454097e-10, 9.18566950548687e-11, -1.391
2958860258302e-12, 4.494531645781494e-12, -6.579574299544324e-12, 2.9211643
248588745e-11, -5.175236171689957e-16, 3.917609405115123e-7, 3.976655915567
888e-7, -5.982438349619261e-8, 4.138327763195176e-8, -1.9829837565086886e-7
, 3.804729780782774e-7, -0.004646497835074785, -0.01067347052840945, 0.0003
639091799442014], [-1.5291357114160092e-16, 1.0866610338818826e-12, 1.12271
41780075931e-12, -1.5939267055144768e-13, 1.1518270702604412e-13, -5.639209
163299109e-13, 1.0774641427973126e-12, 1.6942701488476263e-15, -4.646499114
6418856e-8, -4.165134819154622e-8, 8.938471369573154e-9, -4.777801958866299
6e-9, 1.8469605322926612e-8, -3.8971737162252045e-8, 0.005520378461434084, 
0.012741180721540438, -0.00044455408370921306]], [[4.6751623163117124e-20, 
-1.6569025928034065e-8, -5.534268979084768e-9, -8.671322446868321e-11, -4.4
786514336349467e-13, 3.0234416209660143e-12, -2.1606353935251195e-12, -1.28
96004522703535e-17, 4.206402257175551e-6, 6.988795541925621e-7, -1.35893337
25031318e-8, 3.5503788427078575e-8, -6.088656212434049e-8, 2.38158556960736
02e-7, 0.001245600411400305, 0.002860729452572667, -0.00010214607553929092]
, [5.002599147143378e-17, 3.1678938517517795e-12, 5.261060135265377e-13, -1
.0205238560618153e-14, 2.671462735059237e-14, -4.572196890673573e-14, 1.791
1629534855511e-13, -2.4468027375869937e-16, 1.3539540795104723e-9, 1.456429
8109168564e-9, -1.7460275803579459e-10, 1.4510710091318965e-10, -7.64960897
0196612e-10, 1.4036832618291312e-9, -0.004393447156512099, -0.0101227796141
78738, 0.0003453504578626401], [-1.6904841995388052e-17, 7.35667460560498e-
16, 8.034598998601259e-16, -9.315746836072746e-17, 7.900959842793896e-17, -
4.201720640978288e-16, 7.767523367864484e-16, 6.9528422721247485e-16, -6.15
2610686959683e-11, -4.505640828103627e-11, 1.180325761893809e-11, -6.238913
89178676e-12, 1.9563965510033533e-11, -4.05336201606857e-11, 0.003780497556
492514, 0.008709473893476354, -0.000297237704424878]]], nothing, SciMLBase.
ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullPa
rameters, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main
.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, No
thing, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciML
Base.StandardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.FullSpeciali
ze, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64},
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothi
ng, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".slider_crank_mm
!, [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, no
thing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, noth
ing, nothing, nothing, nothing), [0.0, 0.0, 0.450016933, 0.0, 0.0, 1.033398
63e-5, 1.69327969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.44489610
5, 0.00463434311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 38
2.45895095266985, -6.339193797155536e-7], (0.0, 0.1), SciMLBase.NullParamet
ers(), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), SciMLBase.Sta
ndardODEProblem()), OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForward
Diff{nothing, 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(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}())), O
rdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFunction{true, SciMLBase.F
ullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matri
x{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSER
VED), Nothing, Nothing, Nothing, Nothing}, Vector{Vector{Float64}}, Vector{
Float64}, Vector{Vector{Vector{Float64}}}, Nothing, OrdinaryDiffEqRosenbroc
k.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Float64
}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTableau{
Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slide
r_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciM
LBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float6
4}, SciMLBase.NullParameters}, SciMLBase.UJacobianWrapper{true, SciMLBase.O
DEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#2
25".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ty
peof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Floa
t64, SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float64}, Ve
ctor{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve.Defau
ltLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Float6
4, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, Matr
ix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, 
Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, 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.RefValue{I
nt32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Ba
se.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vect
or{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Nothing, M
atrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearAlgeb
ra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vec
tor{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tuple{D
ifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing
, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tuple{}
}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Not
hing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tup
le{}}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDeriv
ativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{t
rue, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_c
rank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBa
se.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64},
 SciMLBase.NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothin
g, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{
}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfa
ceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradie
ntWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeo
f(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing,
 Nothing, Nothing, 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{}}, Float64, ForwardDiff.DerivativeC
onfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.Auto
ForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true
, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiff
EqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!), typ
eof(OrdinaryDiffEqCore.trivial_limiter!)}, OrdinaryDiffEqCore.DifferentialV
arsUndefined}(SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(
Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing
, Nothing, Nothing}(Main.var"##WeaveSandBox#225".slider_crank_mm!, [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], n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothin
g, nothing, nothing), [[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.6
9327969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463
434311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095
266985, -6.339193797155536e-7], [0.00015000000000000096, -7.499576682940676
e-5, 0.4500169304662131, 4.448961052636021e-7, 4.63434311592467e-9, 1.03339
82379911499e-5, 1.6932794315479788e-5, 150.0, -74.99576640815987, -0.005064
88450368873, 0.444896105824963, 0.004634343127775004, -6.054169584992515e-6
, -2.47977849610951e-6, 0.06633307975256669, 382.4589986509165, -0.02694417
633375928], [0.00030346004349877573, -0.0001517214564432677, 0.450016922635
2828, 9.000546114972841e-7, 9.375586460700212e-9, 1.0333973952809054e-5, 1.
6932791887546723e-5, 150.0, -74.99576445216772, -0.010243850561905663, 0.44
48961085180174, 0.004634343182686087, -1.0419742862265787e-5, -2.2670489653
288746e-6, 0.1341963690599594, 382.459172880821, -0.05450987701921593], [0.
0005015101859710008, -0.00025074093262395197, 0.45001690469755357, 1.487466
1997899658e-6, 1.549446872075291e-8, 1.0333956477602698e-5, 1.6932789072694
76e-5, 150.0, -74.9957599696659, -0.01692764725306674, 0.4448961147590913, 
0.0046343433081191395, -1.605031743433838e-5, -1.998148870487642e-6, 0.2217
7844269185154, 382.45958222640934, -0.09008523290046067], [0.00074039733206
01213, -0.00037017774685971374, 0.45001687131923174, 2.1959992962262974e-6,
 2.2875035873089427e-8, 1.0333925513299973e-5, 1.6932786140135973e-5, 150.0
, -74.99575162696239, -0.024989623539144558, 0.4448961264376182, 0.00463434
3540181322, -2.2833542079900397e-5, -1.687687855988195e-6, 0.32741976926166
49, 382.4603533091788, -0.13299613415557263], [0.001026076084043756, -0.000
5130090189330409, 0.45001681454498926, 3.0433151152644683e-6, 3.17012594179
9583e-8, 1.0333874314727199e-5, 1.6932783257358433e-5, 150.0, -74.995737435
05638, -0.034630751562149904, 0.44489614637379493, 0.004634343930813733, -3
.092795000110172e-5, -1.3458597346916303e-6, 0.45375394666783836, 382.46167
16345697, -0.18431229207526867], [0.0013588073446756405, -0.000679365170391
0777, 0.4500167252725207, 4.030187519386913e-6, 4.198120071422105e-8, 1.033
3795282905683e-5, 1.6932780664311376e-5, 150.0, -74.99571511819076, -0.0458
5986399317161, 0.44489617781645624, 0.004634344534596813, -4.03226603680975
4e-5, -1.0035719088735577e-6, 0.6008968994900165, 382.46374749559607, -0.24
408073976409575], [0.001740586686285242, -0.0008702438947217648, 0.45001659
215344697, 5.162535375758511e-6, 5.377651515804742e-8, 1.0333678994036453e-
5, 1.6932778510456533e-5, 150.0, -74.99568183924133, -0.05874435208168425, 
0.4448962248481436, 0.0046343454111998795, -5.104499706866777e-5, -7.085018
401089483e-7, 0.7697320071785777, 382.46683774260936, -0.3126602060042485],
 [0.0021723943418506444, -0.0010861352258557267, 0.45001640206928745, 6.443
266107952237e-6, 6.711748901974743e-8, 1.0333514702596691e-5, 1.69327767659
11032e-5, 150.0, -74.9956343188636, -0.07331736380253197, 0.444896292250668
23, 0.004634346613801736, -6.307870192179609e-5, -5.350298871481906e-7, 0.9
606941001032608, 382.4712301132461, -0.39022716644614525], [0.0026528194528
358338, -0.0013263336978551104, 0.4500161412806057, 7.868195255525723e-6, 8
.19605347001388e-8, 1.0333291418107752e-5, 1.6932775041336885e-5, 150.0, -7
4.99556912303368, -0.0895313780009222, 0.4448963851425868, 0.00463434817026
6432, -7.632275342330097e-5, -5.89627232483452e-7, 1.173161085869231, 382.4
772095984531, -0.4765287336688831]  …  [14.984326033266097, -0.337433846609
92903, 0.17066384816348634, 0.0001925670949836511, 2.4336366748648265e-5, -
5.386650914862699e-6, -8.467722006862385e-6, 150.0, 59.566762549226176, -8.
980837245398131, -0.03360403817608118, -0.005563232710122797, 0.00062019571
07776033, 0.0007847214162413029, -64.3334282966124, -165.32058470424687, -1
8.46243029179165], [14.986242913520385, -0.33667208827259476, 0.17054925886
42362, 0.00019214049594764538, 2.4265333699461173e-5, -5.37872618426043e-6,
 -8.45744788765731e-6, 150.0, 59.651651351019304, -8.952884000168048, -0.03
3161123042279625, -0.005553664394563368, 0.0006187827878562012, 0.000824604
8083912312, -64.11932271845029, -165.20267763443766, -18.429634461922937], 
[14.988159793774674, -0.33590924668289884, 0.1704350266525003, 0.0001917195
3578593913, 2.4194425374568393e-5, -5.370866167627896e-6, -8.4466161108339e
-6, 150.0, 59.73629571530283, -8.924951958631235, -0.032721450745209886, -0
.005543765503541297, 0.0006102586533010521, 0.0008715776087878277, -63.8985
3631157582, -165.06903288699928, -18.397226052246108], [14.990076674028963,
 -0.335145324984915, 0.17032115123861555, 0.00019130417643464318, 2.4123643
805991987e-5, -5.36315357428237e-6, -8.435153747933248e-6, 150.0, 59.820692
32779677, -8.89704416909985, -0.03228446840503514, -0.005533891760450871, 0
.0005959637126418777, 0.0009227585268194381, -63.669373345660134, -164.9153
2252116804, -18.365385794203267], [14.991993554283251, -0.3343803263693563,
 0.1702076322898355, 0.00019089438770765417, 2.4052986060156764e-5, -5.3556
51854823914e-6, -8.423028619337347e-6, 150.0, 59.90483725465455, -8.8691642
80820632, -0.0318495058514582, -0.0055244594691963465, 0.000577550407148896
2, 0.0009746939898262994, -63.43079660007186, -164.73881903247056, -18.3342
2081502363], [14.99391043453754, -0.3336142540794395, 0.17009446942447687, 
0.0001904901484001149, 2.3982443669257198e-5, -5.348402072541752e-6, -8.410
254888150922e-6, 150.0, 59.98872627013555, -8.841316251619563, -0.031415838
7052948, -0.00551591268323262, 0.0005568456165567288, 0.0010236335221000734
, -63.18251239979738, -164.53862777507547, -18.303756006441112], [14.995827
314791828, -0.33284711141237733, 0.1699816622100011, 0.00019009144655123672
, 2.3912002501702476e-5, -5.341421629614125e-6, -8.396894943775581e-6, 150.
0, 60.072355208663296, -8.813504028623818, -0.030982755958024723, -0.005508
687788191032, 0.000535699957151365, 0.0010658310890655338, -62.924994970229
88, -164.31577070001006, -18.273932117492073], [14.997744195046117, -0.3320
7890171636645, 0.16986921016521084, 0.00018969827884406077, 2.3841643086386
884e-5, -5.334704937855167e-6, -8.38305739836016e-6, 150.0, 60.155720312579
604, -8.785731227978577, -0.030549626541498693, -0.005503178379737096, 0.00
05158362335030889, 0.0010978479544057754, -62.659448342611896, -164.0731144
1467883, -18.244610681603135], [14.999661075300406, -0.3313096283833128, 0.
16975711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.328225
965594457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.758000839
578706, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409,
 0.001116832441838903, -62.38770921173346, -163.8151483533587, -18.21558533
772592], [14.999999999998904, -0.3311735023248599, 0.1697373296153814, 0.00
018924268895326456, 2.3758915247975978e-5, -5.327102156215073e-6, -8.366365
693649003e-6, 150.0, 60.253483257566366, -8.753102401475758, -0.03003920050
7881367, -0.00549931871516871, 0.0004960535857023572, 0.001118665317438119,
 -62.339113356546875, -163.76819159511533, -18.21047117266844]], [0.0, 1.0e
-6, 2.023066956658499e-6, 3.3434012398066557e-6, 4.935982213734114e-6, 6.84
05072269583345e-6, 9.05871563117088e-6, 1.1603911241901547e-5, 1.4482628945
67087e-5, 1.768546301890546e-5  …  0.09989550688844792, 0.09990828609014318
, 0.09992106529183845, 0.09993384449353371, 0.09994662369522897, 0.09995940
289692423, 0.0999721820986195, 0.09998496130031476, 0.09999774050201002, 0.
1], [[[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.69327969e-5, 150.0
, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463434311, -1.785910
76e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095266985, -6.339193
797155536e-7]], [[-2.68644888130459e-19, -2.1028710514110055e-13, 2.5310975
04465909e-9, -2.636037520298232e-16, -5.925709186045359e-18, 2.134177734153
846e-12, -1.0486643257935952e-13, 6.895679674685942e-22, -6.32879179739638e
-7, 1.9224276157283732e-10, -8.932668185548306e-10, -1.7771720558451595e-11
, -2.041478699358192e-10, 2.2544327438234717e-10, 0.0003880183473319511, -5
.8355519560835916e-5, 1.0630243690469483e-5], [1.7159157834705832e-17, -2.1
097779974468737e-13, 4.1581944011738246e-17, -2.976681678458063e-16, -5.913
949878934952e-18, -5.369751010934185e-17, 4.9885191137136424e-17, 1.9036602
802577233e-20, 2.488417235150416e-13, 2.6468931333899795e-10, -5.2561424676
197376e-14, 2.142152814742128e-14, -1.7168587934934325e-10, 2.9791331586402
81e-10, -0.0013042580268240937, -1.2023406134695895e-5, -3.572636056478128e
-5], [-7.449142247232344e-18, 1.2686687789430311e-17, 6.65612852086963e-17,
 -5.404560358243648e-20, -1.017494822822154e-20, -4.295806611458912e-17, 7.
486190902461984e-17, -4.924661074765362e-20, -5.214496319572234e-13, -4.420
906625491374e-14, 9.669513300308266e-14, -5.3333286505331213e-14, 1.3953026
614421939e-14, -4.4446853140907365e-14, 0.001110092209618081, 3.16885820122
36744e-5, 3.0410841831175233e-5]], [[-1.6679374775645461e-19, -8.8760664487
45893e-13, 2.649214320774772e-9, -1.2181239638309662e-15, -2.49275011485494
36e-17, 2.23328158235076e-12, -1.0904629387719927e-13, -8.379597200400739e-
21, -6.624121975148487e-7, 1.038460273452668e-9, -9.35165374184182e-10, -1.
85468056242561e-11, -7.567997405792764e-10, 1.1783330405931262e-9, 4.918635
154529407e-9, -3.832826274161515e-5, 8.217641473217934e-9], [2.828663622595
5885e-17, -2.2591234724324318e-13, 3.2951150329457914e-16, -3.1879020436629
335e-16, -6.36139971893541e-18, -2.4235315221372914e-16, 3.7417699677472744
e-16, -5.109026668916804e-20, -3.971250033686333e-13, 2.8328362493135145e-1
0, 5.796710221579225e-14, -5.5580835099068645e-14, -1.8377573325179876e-10,
 3.188602743167965e-10, -1.053059472209983e-7, -8.893106417585768e-5, -6.07
4575688731229e-9], [-1.3545735095508755e-17, 8.588916146982523e-18, 7.28717
408010273e-17, -1.1660964911883392e-19, 4.306816162026504e-20, -4.705976975
802095e-17, 8.197304146935367e-17, 1.6536642574352758e-19, 2.05079203120854
6e-12, -6.860910717367249e-14, -3.948738045256091e-13, 1.9197579997479003e-
13, 3.4576347247967745e-14, -6.915596401597236e-14, 3.627908178359992e-8, 9
.815084338608153e-5, 7.290426131836957e-9]], [[8.909214095137833e-20, -2.71
6416938071741e-12, 4.412422167773359e-9, -3.777153942481036e-15, -7.6070309
67859443e-17, 3.717662607449115e-12, -1.7841028485975655e-13, -1.6345870969
315688e-21, -1.1032819138364779e-6, 3.281083291381012e-9, -1.55844597492612
67e-9, -3.067695054257877e-11, -2.267145334014816e-9, 3.7090264601121193e-9
, -1.569919315800795e-7, -7.776191753871322e-5, 1.7920592948080683e-8], [1.
9306313079746878e-17, -4.855808626845723e-13, 1.3758614182938147e-15, -6.85
6144158814481e-16, -1.358640993383467e-17, -9.542549735837704e-16, 1.555788
5617244117e-15, -4.660509122356508e-20, 1.005465208559602e-12, 6.0819777080
01492e-10, -2.597526810116501e-13, 2.2579071940165973e-14, -3.9466541117537
916e-10, 6.846685469856837e-10, 2.7489537209267965e-7, -0.00010081882728926
393, 8.326169232812192e-9], [-5.45342101619746e-19, 6.2901830520281235e-18,
 2.0183848492285753e-16, -3.3947852254725966e-19, 1.2190688467283253e-19, -
1.3035423374957462e-16, 2.2708300740184133e-16, 1.4810453234419243e-19, 3.2
257168147697003e-12, -3.3815208045986643e-13, -6.248970679183017e-13, 2.973
2443314248617e-13, 1.6872503220949348e-13, -3.384657751012127e-13, -3.23823
8658212258e-7, 0.00012325354584293987, -3.7022805512392033e-9]], [[-6.41139
666954011e-19, -6.217157962554681e-12, 6.419672863015317e-9, -8.69676025341
6632e-15, -1.7317481431897158e-16, 5.402872510339046e-12, -2.49654620976902
1e-13, 8.967836873052249e-21, -1.6051602774535172e-6, 7.606424339454942e-9,
 -2.2701714951664266e-9, -4.392104543986514e-11, -5.137334448355259e-9, 8.5
85753152226208e-9, -3.00572073800894e-7, -0.00010771100977015242, 4.1839113
08612285e-8], [2.790014621266635e-17, -8.521419223877949e-13, 3.89417191782
5173e-15, -1.204820489920747e-15, -2.3387267147834448e-17, -2.6353082437037
084e-15, 4.396239759933859e-15, 5.468823523370809e-20, 5.275715453407094e-1
2, 1.064586566936346e-9, -1.1913036912788336e-12, 2.962550560890637e-13, -6
.912322945271892e-10, 1.1987845351993837e-9, 4.909537148709992e-7, -0.00016
342964157084158, 1.8749907787600612e-8], [-6.503118015759026e-18, 1.5794087
552590876e-17, 4.2590682742884226e-16, -6.0488044067937385e-19, 1.634525024
0626014e-19, -2.752666050024651e-16, 4.79348524777757e-16, -8.8826635773378
98e-20, 1.2325655890697214e-12, -1.0998009808038487e-12, -2.539437116723122
4e-13, 9.50619665806073e-14, 5.476382294515311e-13, -1.1001008696764637e-12
, -5.16329593518248e-7, 0.00019365802925696735, -9.826342504051446e-9]], [[
-9.218593118416116e-19, -1.2785773065742038e-11, 9.18087945822004e-9, -1.79
51193161147498e-14, -3.5274778860666507e-16, 7.711520682033672e-12, -3.3146
5315437919e-13, 2.3374090645574878e-23, -2.295529114813181e-6, 1.5730237835
32498e-8, -3.253623589517809e-9, -6.103416665912717e-11, -1.049951602242469
2e-8, 1.7744130052135492e-8, -4.0889023914145056e-7, -0.0001519896445386073
, 9.011873806746463e-8], [4.012975015230849e-17, -1.4573288412061883e-12, 9
.6940510031957e-15, -2.0645922802735847e-15, -3.8967044232846597e-17, -6.47
85192136725226e-15, 1.0936143458747589e-14, 1.0240829584077005e-19, 1.34349
07722477084e-11, 1.8121994074365028e-9, -3.0128816664706924e-12, 7.66586091
1939687e-13, -1.1779395653092514e-9, 2.0417065488196287e-9, 2.9923826421363
83e-7, -0.00023683070277724666, 2.4907409253311606e-8], [-1.167726215150836
5e-17, 2.395403201633611e-17, 8.662895219290244e-16, -1.9208326172752004e-1
8, 5.038575053241168e-19, -5.606006537041377e-16, 9.755534339980778e-16, -9
.838608636843079e-20, 3.134214944228992e-12, -3.1885970255038583e-12, -6.36
2328532997607e-13, 2.532058434861518e-13, 1.5858436478782219e-12, -3.188026
1427980117e-12, -4.555351272089849e-7, 0.00027977348823636386, -1.424563122
2729711e-8]], [[-6.312477917705783e-19, -2.3600522411495212e-11, 1.24542445
08481196e-8, -3.3234356960055793e-14, -6.408661966024721e-16, 1.04271828618
60546e-11, -3.923488349883611e-13, -2.6947062347972443e-20, -3.113897167929
569e-6, 2.908266046805171e-8, -4.429492198120565e-9, -7.874279190133463e-11
, -1.928209353521366e-8, 3.27998561987377e-8, -8.012949016290241e-7, -0.000
19955670433057586, 1.620192606820233e-7], [3.3114549677021355e-17, -2.30246
11181992188e-12, 2.0971710294220385e-14, -3.2734060895833876e-15, -5.869231
736652197e-17, -1.391584528021881e-14, 2.3653185482313918e-14, -1.853803348
0431378e-19, 2.8254004938032305e-11, 2.84090873968618e-9, -6.34932406994223
34e-12, 1.5810614840455905e-12, -1.8500048548075993e-9, 3.2035151390080954e
-9, 7.430550338280591e-7, -0.0003351540432669211, 5.9025028283509216e-8], [
1.2141136654862322e-18, 3.163151770007981e-17, 1.5798625640255855e-15, -4.2
299356550814756e-18, 1.1255249595345094e-18, -1.024517793892278e-15, 1.7809
562748429898e-15, 5.339907917719559e-19, 4.979705991781144e-12, -7.89047577
360474e-12, -1.0194583951417038e-12, 3.9133574440957934e-13, 3.921220220449
4915e-12, -7.886669379908396e-12, -9.675368553158148e-7, 0.0003916685785537
162, -4.3731241893152035e-8]], [[-4.063173680172119e-19, -4.06117415947143e
-11, 1.639674917001976e-8, -5.736232108439756e-14, -1.0757534789019004e-15,
 1.3659811139894144e-11, -4.0042973340101123e-13, -4.676226309791659e-20, -
4.099461536459453e-6, 4.9976453786664213e-8, -5.8635005702549525e-9, -9.555
206975123522e-11, -3.3009860165561686e-8, 5.6372874135294724e-8, -1.3352815
468897515e-6, -0.00025461246314322845, 2.742645973698752e-7], [5.4940758298
06505e-17, -3.4780000655935953e-12, 4.149200008071875e-14, -4.9714353996075
85e-15, -8.182256419392239e-17, -2.7420891907609556e-14, 4.6802539416214724
e-14, -2.1373109018966815e-19, 5.848681609715172e-11, 4.239473949334734e-9,
 -1.3037004456145713e-11, 3.3743667595912344e-12, -2.768763993790751e-9, 4.
787221912945002e-9, 1.1801090614182184e-6, -0.00045167140124373535, 1.09631
74632939791e-7], [-1.8445901292823254e-17, 2.793403495627838e-17, 2.7008293
566814983e-15, -8.712979682464227e-18, 2.2083663725596058e-18, -1.757144577
4277823e-15, 3.0493714338953492e-15, 5.275266495249173e-19, 2.4170981405058
734e-12, -1.768523606035792e-11, -5.778760700462253e-13, 8.650694643264627e
-14, 8.784677570440368e-12, -1.7672920992529123e-11, -1.4943502222061313e-6
, 0.0005251022811207411, -8.93614797660582e-8]], [[-1.1081854131874582e-18,
 -6.588291488049572e-11, 2.0975753247767066e-8, -9.338331916137253e-14, -1.
6810757274085056e-15, 1.7347303503142017e-11, -2.9502830623068256e-13, -3.1
98111202380468e-20, -5.243974806203276e-6, 8.073276177897539e-8, -7.5603440
20546902e-9, -1.0707785956833474e-10, -5.322820802408817e-8, 9.110934912770
904e-8, -2.0395664575446834e-6, -0.0003125398689663399, 4.37510508297045e-7
], [4.635722455124379e-17, -5.032024933118211e-12, 7.601650858099943e-14, -
7.24800404805605e-15, -1.04421646279849e-16, -5.013620556065303e-14, 8.5783
47027586598e-14, -4.57355437474102e-19, 1.0511872728537173e-10, 6.023431035
584239e-9, -2.3468693703564796e-11, 5.984786805694499e-12, -3.9510924113643
61e-9, 6.8159337440827064e-9, 1.5441172331018567e-6, -0.000590738102662893,
 1.821062831447863e-7], [-5.014951129436326e-18, 8.008980360468643e-17, 4.3
30990785675039e-15, -1.8199428332030012e-17, 4.645929117504315e-18, -2.8313
569116193075e-15, 4.9013738278691584e-15, 1.6892369581641812e-18, 6.7320605
55103941e-12, -3.6295737405619447e-11, -1.4706876109639348e-12, 4.106332004
1538605e-13, 1.802580443736974e-11, -3.626933851278851e-11, -2.102705846409
174e-6, 0.0006836981791799891, -1.609987011831582e-7]], [[-6.04232065385976
9e-19, -1.0094091593684618e-10, 2.5965330879497233e-8, -1.43697482799756e-1
3, -2.438481262827989e-15, 2.1253874513392902e-11, 1.0965481959249376e-14, 
7.708298416972134e-20, -6.490834952930478e-6, 1.2279164436665567e-7, -9.461
210571829304e-9, -1.0643434622349348e-10, -8.093738041888951e-8, 1.38689889
64504084e-7, -3.1663431789963676e-6, -0.00036520761125543894, 6.48585972181
51e-7], [7.990781996831157e-17, -6.929759212642766e-12, 1.2893820490162184e
-13, -1.0088367516375508e-14, -1.168108420197975e-16, -8.5003880912282e-14,
 1.4562003983941617e-13, 5.249023265385382e-19, 1.768151263594142e-10, 8.08
1720145201641e-9, -3.9481432987294443e-11, 1.000084960702549e-11, -5.335214
093920275e-9, 9.17313190959538e-9, 2.6262067367649104e-6, -0.00075007945674
208, 3.060595222997916e-7], [-4.110839550879798e-17, 1.4124744793963772e-16
, 6.447661362456701e-15, -3.412938753318921e-17, 8.726941019834708e-18, -4.
2447130054553484e-15, 7.321606188854658e-15, -1.5030074066954777e-18, 1.167
3381371926885e-11, -6.797991770479529e-11, -2.5016112943780967e-12, 7.67207
774615985e-13, 3.376065501556329e-11, -6.793387539456807e-11, -3.3975338053
311473e-6, 0.0008637806125323104, -2.850869834160566e-7]]  …  [[2.933648603
7837262e-19, -5.442087522399419e-7, -1.7875084111898742e-7, -2.857212372395
194e-9, -5.6569673137703235e-11, -5.113336940405205e-11, -1.856604262006517
2e-10, -9.203301077663326e-19, 0.00012047089714802024, 9.011365856829189e-6
, 1.8888024875944097e-6, -3.619388690750961e-7, 4.194631399685197e-6, -5.04
5210499000781e-6, -0.00015918550756900243, -1.694892708272034e-5, -0.000147
25820905094205], [3.1116230413083403e-16, 5.128336225328267e-10, 3.80776230
29858716e-11, 8.096728197707873e-12, -1.5805042990283118e-12, 1.79836315134
69197e-11, -2.178245700536632e-11, 3.0103193081652624e-16, 1.73064371745822
72e-7, 1.5540196992437566e-7, -1.9716088010834108e-8, 2.1943375380179976e-8
, -4.679290320405091e-8, 1.4600052829562966e-7, -0.004947832738611011, -0.0
11957223954568549, 0.000521865017958786], [-1.529135702977745e-16, 7.563361
401827061e-13, 6.828264142689799e-13, -1.0198441888859811e-13, 9.0138502753
06016e-14, -2.3744532253376937e-13, 6.434421326498872e-13, -8.8712333785788
31e-16, 4.8786094097510235e-8, 4.4721263734792686e-8, -9.341945248841233e-9
, 4.807561478617081e-9, -2.2254387907711105e-8, 4.248740196849164e-8, 0.004
949409406797013, 0.01191860981389142, -0.0005197328296080237]], [[2.9336484
44973088e-19, -5.426643690946212e-7, -1.786312873472583e-7, -2.833748451344
581e-9, -6.062223803105835e-11, 8.69491681668701e-13, -2.4599285201209127e-
10, -1.9003647650813345e-16, 0.00012132628377865647, 9.786312750445978e-6, 
1.7653065875301784e-6, -2.6298868958516986e-7, 3.900779361746304e-6, -4.314
734991844327e-6, -0.0013900034665488149, -0.00308666908779802, -1.176462109
7236174e-5], [3.1116230390553975e-16, 5.162930113516942e-10, 4.120678963425
3996e-11, 7.605854417600477e-12, -1.1771519552901084e-12, 1.681784236023893
2e-11, -1.883373507765518e-11, -2.1687246325636648e-16, 3.6486961229810624e
-7, 3.316535855831502e-7, -5.642183049468753e-8, 4.08345598737095e-8, -1.34
32980045339517e-7, 3.127126645847042e-7, -0.004922515329229446, -0.01190094
9905994702, 0.0005133559781313052], [-1.5291356945388715e-16, 1.34197624865
24381e-12, 1.2243965768897096e-12, -2.139392567965675e-13, 1.47812534444100
76e-13, -5.07199120790887e-13, 1.156121081859829e-12, 4.193078781727509e-16
, 4.1551339234764523e-8, 3.898285231780191e-8, -7.930748366332455e-9, 4.096
91399950161e-9, -1.9615399961049953e-8, 3.717009895952939e-8, 0.00498735355
0195709, 0.012001941639603896, -0.0005170093543069789]], [[2.93364860351318
3e-19, -5.411056138886046e-7, -1.7849864530568072e-7, -2.8125203477708353e-
9, -6.307139175185835e-11, 4.752860375656126e-11, -2.9397489632555994e-10, 
-2.297174689433087e-16, 0.00012270434902258092, 1.1046424556444151e-5, 1.54
19703372381354e-6, -1.1256209779254121e-7, 3.364491660694715e-6, -3.1247640
32115465e-6, -0.0024129443329487387, -0.005679115030157327, 0.0001012382773
2831481], [3.111623041317193e-16, 5.220215584873869e-10, 4.643937225102078e
-11, 6.681433532402955e-12, -5.503025237513068e-13, 1.4602184912667768e-11,
 -1.38932367201325e-11, -2.4460911983987544e-15, 5.260511488752205e-7, 4.82
3300488969307e-7, -8.71618099133622e-8, 5.6704928158373046e-8, -2.100080529
5396934e-7, 4.5553898974983406e-7, -0.004886376640348863, -0.01178389993269
6238, 0.0004986042239133174], [-1.5291357029799603e-16, 1.816270657897931e-
12, 1.6715017367823953e-12, -3.0428571461016764e-13, 1.9448615052528997e-13
, -7.329895047188003e-13, 1.5803985247932107e-12, 6.964538434135631e-15, 3.
090116622490232e-8, 2.99878508535714e-8, -5.8690470409024985e-9, 3.03938403
19558027e-9, -1.5422828514247695e-8, 2.8763488877692222e-8, 0.0050464140045
88738, 0.012103510347214512, -0.0005111458719152432]], [[2.9336486036487985
e-19, -5.395265019509334e-7, -1.783473071874014e-7, -2.7946690747090826e-9,
 -6.332815445648465e-11, 8.602178728008405e-11, -3.2428914307001334e-10, 9.
512744008705647e-17, 0.00012448986777145458, 1.269287998708314e-5, 1.241136
3563313068e-6, 7.790580193156197e-8, 2.631884506874167e-6, -1.5679111443356
16e-6, -0.003143913720401274, -0.007577727512399297, 0.00018255092348343373
], [3.111623041313999e-16, 5.295399148380686e-10, 5.3365714281752716e-11, 5
.41642340136522e-12, 2.5252836051026187e-13, 1.1527698779459991e-11, -7.344
726280916553e-12, 1.9012487234768004e-15, 6.433202846378893e-7, 5.949012589
957785e-7, -1.0940705441071636e-7, 6.820431088440586e-8, -2.678512178647648
7e-7, 5.625979684588528e-7, -0.004842899612579266, -0.01161842040072994, 0.
0004787476167686354], [-1.5291357029794747e-16, 2.1403583257657853e-12, 1.9
868901016932253e-12, -3.6559107545581294e-13, 2.2617518459194265e-13, -8.97
0245354527191e-13, 1.8809003310046684e-12, -6.063938451305761e-15, 1.771240
8972751372e-8, 1.8464909010040862e-8, -3.326578811552637e-9, 1.721683717944
7503e-9, -1.0017980517685361e-8, 1.794599044332399e-8, 0.005122184382349185
, 0.012218081992967884, -0.0005025280337997038]], [[2.9336486037070497e-19,
 -5.379227475890714e-7, -1.7817314431871773e-7, -2.7810071140247534e-9, -6.
097276121369219e-11, 1.1421951304985762e-10, -3.330070973524215e-10, 1.4640
520092882122e-16, 0.00012653400748934354, 1.4594584344267692e-5, 8.91523237
7094232e-7, 2.9354961103596586e-7, 1.7645030830479182e-6, 2.325407196981078
e-7, -0.003522986282421673, -0.008622372719389374, 0.00022560537594210276],
 [3.11162304131385e-16, 5.382215386234548e-10, 6.143476183378621e-11, 3.931
800684596069e-12, 1.1687855910033405e-12, 7.852982624911712e-12, 2.93730013
30961863e-13, 1.1521564094039215e-15, 7.069954807661786e-7, 6.5992162620630
95e-7, -1.2132640656664773e-7, 7.434023399326318e-8, -3.0333465781560015e-7
, 6.248975362474651e-7, -0.004795684599910702, -0.011419917822703494, 0.000
455321255772848], [-1.5291357029798868e-16, 2.2872331247382667e-12, 2.14400
54638997844e-12, -3.9280652252802464e-13, 2.401045584222912e-13, -9.8653835
19061463e-13, 2.0322615859084756e-12, -2.6905566681357965e-15, 3.0673721338
78578e-9, 5.347582607934586e-9, -5.119964944776026e-10, 2.51646115548814e-1
0, -3.840618742133673e-9, 5.5933869461494735e-9, 0.005208529423131767, 0.01
2338655470530466, -0.0004917610651598605]], [[2.933648445105041e-19, -5.362
921179243394e-7, -1.7797385409501105e-7, -2.771951536527271e-9, -5.57909771
2344434e-11, 1.3085120663713528e-10, -3.179196514182842e-10, 8.783499964581
289e-17, 0.00012866653367760045, 1.6598791674125882e-5, 5.258702646725265e-
7, 5.172890296549318e-7, 8.343134236950126e-7, 2.132614116938078e-6, -0.003
518982474972022, -0.008722006737249467, 0.00022697070016103676], [3.1116230
390516533e-16, 5.473433945437229e-10, 6.999880431490634e-11, 2.366637728937
0566e-12, 2.1259407488676844e-12, 3.883150372566369e-12, 8.411675273769897e
-12, -6.236469105594341e-16, 7.117876707414616e-7, 6.718006890403541e-7, -1
.219350543712498e-7, 7.455865829221284e-8, -3.137528689537352e-7, 6.3707032
73652324e-7, -0.004748860905895305, -0.011207051349061322, 0.00043016210346
718273], [-1.5291356945380787e-16, 2.2447238552457116e-12, 2.12904697490200
8e-12, -3.836765103261197e-13, 2.3498680648887987e-13, -9.948273295790063e-
13, 2.021200376261764e-12, 1.427996042091789e-15, -1.1833100668628358e-8, -
8.298983656192128e-9, 2.3438963663624864e-9, -1.250439717773546e-9, 2.60680
52869520404e-9, -7.2928734493575575e-9, 0.005298643207815952, 0.01245814850
326651, -0.0004796422875333918]], [[2.933648127647172e-19, -5.3463461875157
14e-7, -1.7774915885510494e-7, -2.767489489818993e-9, -4.779363238212218e-1
1, 1.3560167018109356e-10, -2.787282915760427e-10, -4.962997751877954e-17, 
0.00013070971926565226, 1.8543496688746117e-5, 1.7826210687011608e-7, 7.312
21545565372e-7, -8.215182991494861e-8, 3.979308361345282e-6, -0.00313204598
34944386, -0.00786242742178328, 0.00018661133603093362], [3.111623034550484
e-16, 5.561453053082023e-10, 7.836588340732917e-11, 8.667261471027895e-13, 
3.0474797083125856e-12, -5.4988913031167264e-14, 1.6355738820710226e-11, -8
.239754617074878e-16, 6.572121235289751e-7, 6.292613876935506e-7, -1.111711
4484916203e-7, 6.878751583446021e-8, -2.9843917651616657e-7, 5.978148901382
9e-7, -0.004706131136376704, -0.010999158347059805, 0.0004052642694336329],
 [-1.5291356776641862e-16, 2.0161016973823163e-12, 1.942260394708208e-12, -
3.3889978988141055e-13, 2.1104199472752765e-13, -9.217948456158273e-13, 1.8
476169229158486e-12, 2.597737691767792e-15, -2.57830577759092e-8, -2.136748
5763084416e-8, 5.009927904077167e-9, -2.6631211384240393e-9, 8.799840326916
245e-9, -1.9666062484637927e-8, 0.005385145861687143, 0.012569187682411874,
 -0.00046709992746798556]], [[2.9336482863453103e-19, -5.329524978368048e-7
, -1.7750084040361175e-7, -2.7671787458235857e-9, -3.721783637732394e-11, 1
.2912979161599335e-10, -2.1708130878078118e-10, -2.395667364897827e-16, 0.0
0013249280904939004, 2.0270589201398328e-5, -1.1864553723915944e-7, 9.18077
4774701452e-7, -9.100185331492696e-7, 5.623020372466823e-6, -0.002393311524
516632, -0.006107212457133864, 0.00010787772841174555], [3.1116230368010765
e-16, 5.638921649421694e-10, 8.585608850384506e-11, -4.2728174436021955e-13
, 3.8590417664059984e-12, -3.6395137175448266e-12, 2.3482674576991434e-11, 
-9.928923318948015e-16, 5.476052198549981e-7, 5.354460655469725e-7, -8.9896
48366864584e-8, 5.744063273652854e-8, -2.588199102798001e-7, 5.100073690799
595e-7, -0.004671161539368623, -0.010815674862421343, 0.0003825792932610796
7], [-1.5291356861008805e-16, 1.6194477744016966e-12, 1.5978034580446866e-1
2, -2.6207644448855293e-13, 1.700648908079158e-13, -7.739586142945729e-13, 
1.5246166097803682e-12, 3.3599827459369188e-15, -3.764502939751347e-8, -3.2
79486204018718e-8, 7.268678848637004e-9, -3.871313118166232e-9, 1.423479586
1365984e-8, -3.0520337529339194e-8, 0.005461177115174794, 0.012665406265106
594, -0.00045508943574204145]], [[2.933648762385887e-19, -5.312500660558711
e-7, -1.772326072441362e-7, -2.7701831385106964e-9, -2.4509826580747566e-11
, 1.1300802336725376e-10, -1.3645185901812839e-10, -3.688239122434462e-17, 
0.0001338658686563475, 2.1638702678665578e-5, -3.362748158167004e-7, 1.0626
196246815937e-6, -1.5821611626527191e-6, 6.929705941692937e-6, -0.001362471
5325143103, -0.003592929067613304, -2.8005836303821402e-6], [3.111623043563
714e-16, 5.699331358454097e-10, 9.18566950548687e-11, -1.3912958860258302e-
12, 4.494531645781494e-12, -6.579574299544324e-12, 2.9211643248588745e-11, 
-5.175236171689957e-16, 3.917609405115123e-7, 3.976655915567888e-7, -5.9824
38349619261e-8, 4.138327763195176e-8, -1.9829837565086886e-7, 3.80472978078
2774e-7, -0.004646497835074785, -0.01067347052840945, 0.0003639091799442014
], [-1.5291357114160092e-16, 1.0866610338818826e-12, 1.1227141780075931e-12
, -1.5939267055144768e-13, 1.1518270702604412e-13, -5.639209163299109e-13, 
1.0774641427973126e-12, 1.6942701488476263e-15, -4.6464991146418856e-8, -4.
165134819154622e-8, 8.938471369573154e-9, -4.7778019588662996e-9, 1.8469605
322926612e-8, -3.8971737162252045e-8, 0.005520378461434084, 0.0127411807215
40438, -0.00044455408370921306]], [[4.6751623163117124e-20, -1.656902592803
4065e-8, -5.534268979084768e-9, -8.671322446868321e-11, -4.4786514336349467
e-13, 3.0234416209660143e-12, -2.1606353935251195e-12, -1.2896004522703535e
-17, 4.206402257175551e-6, 6.988795541925621e-7, -1.3589333725031318e-8, 3.
5503788427078575e-8, -6.088656212434049e-8, 2.3815855696073602e-7, 0.001245
600411400305, 0.002860729452572667, -0.00010214607553929092], [5.0025991471
43378e-17, 3.1678938517517795e-12, 5.261060135265377e-13, -1.02052385606181
53e-14, 2.671462735059237e-14, -4.572196890673573e-14, 1.7911629534855511e-
13, -2.4468027375869937e-16, 1.3539540795104723e-9, 1.4564298109168564e-9, 
-1.7460275803579459e-10, 1.4510710091318965e-10, -7.649608970196612e-10, 1.
4036832618291312e-9, -0.004393447156512099, -0.010122779614178738, 0.000345
3504578626401], [-1.6904841995388052e-17, 7.35667460560498e-16, 8.034598998
601259e-16, -9.315746836072746e-17, 7.900959842793896e-17, -4.2017206409782
88e-16, 7.767523367864484e-16, 6.9528422721247485e-16, -6.152610686959683e-
11, -4.505640828103627e-11, 1.180325761893809e-11, -6.23891389178676e-12, 1
.9563965510033533e-11, -4.05336201606857e-11, 0.003780497556492514, 0.00870
9473893476354, -0.000297237704424878]]], nothing, true, OrdinaryDiffEqRosen
brock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Flo
at64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTabl
eau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".s
lider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(
SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Fl
oat64}, SciMLBase.NullParameters}, SciMLBase.UJacobianWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Noth
ing, Nothing, 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.D
efaultLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Fl
oat64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, 
Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector
{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Floa
t64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{Flo
at64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, T
uple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefVal
ue{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, Nothin
g, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearA
lgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64,
 Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent
, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggi
ng.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, S
ciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLo
gging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent
, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tup
le{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Not
hing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tup
le{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep
{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}},
 Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgD
erivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFuncti
on{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slid
er_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sci
MLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float
64}, SciMLBase.NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{no
thing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tu
ple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInt
erfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGr
adientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, t
ypeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Noth
ing, Nothing, Nothing, 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{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.
AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), 
true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(Ordinary
DiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!),
 typeof(OrdinaryDiffEqCore.trivial_limiter!)}([14.999999999998904, -0.33117
35023248599, 0.1697373296153814, 0.00018924268895326456, 2.3758915247975978
e-5, -5.327102156215073e-6, -8.366365693649003e-6, 150.0, 60.25348325756636
6, -8.753102401475758, -0.030039200507881367, -0.00549931871516871, 0.00049
60535857023572, 0.001118665317438119, -62.339113356546875, -163.76819159511
533, -18.21047117266844], [14.999661075300406, -0.3313096283833128, 0.16975
711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.32822596559
4457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.75800083957870
6, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409, 0.00
1116832441838903, -62.38770921173346, -163.8151483533587, -18.2155853377259
2], [[4.6751623163117124e-20, -1.6569025928034065e-8, -5.534268979084768e-9
, -8.671322446868321e-11, -4.4786514336349467e-13, 3.0234416209660143e-12, 
-2.1606353935251195e-12, -1.2896004522703535e-17, 4.206402257175551e-6, 6.9
88795541925621e-7, -1.3589333725031318e-8, 3.5503788427078575e-8, -6.088656
212434049e-8, 2.3815855696073602e-7, 0.001245600411400305, 0.00286072945257
2667, -0.00010214607553929092], [5.002599147143378e-17, 3.1678938517517795e
-12, 5.261060135265377e-13, -1.0205238560618153e-14, 2.671462735059237e-14,
 -4.572196890673573e-14, 1.7911629534855511e-13, -2.4468027375869937e-16, 1
.3539540795104723e-9, 1.4564298109168564e-9, -1.7460275803579459e-10, 1.451
0710091318965e-10, -7.649608970196612e-10, 1.4036832618291312e-9, -0.004393
447156512099, -0.010122779614178738, 0.0003453504578626401], [-1.6904841995
388052e-17, 7.35667460560498e-16, 8.034598998601259e-16, -9.315746836072746
e-17, 7.900959842793896e-17, -4.201720640978288e-16, 7.767523367864484e-16,
 6.9528422721247485e-16, -6.152610686959683e-11, -4.505640828103627e-11, 1.
180325761893809e-11, -6.23891389178676e-12, 1.9563965510033533e-11, -4.0533
6201606857e-11, 0.003780497556492514, 0.008709473893476354, -0.000297237704
424878]], [1.361037499351051e-19, -3.525159676465468e-18, -3.65499171531746
45e-18, 7.53073315670488e-19, -3.752541369597298e-19, 3.250552440641999e-19
, -3.403527541006535e-18, -2.417956728236717e-26, 4.958648322857677e-14, 5.
2025170907097794e-14, -9.432934623001271e-15, 4.4447795447243536e-15, -9.53
8343829656414e-15, 4.742588629403167e-14, -5.824028563054707e-6, -1.3453107
52224769e-5, 4.4775909088702425e-7], [-149.99999999999972, -60.253483257573
73, 8.753102401468125, 0.030039200509453964, 0.00549931871438509, -0.000496
0535850235643, -0.0011186653245454964, -22.55119158171042, -29.910760842950
662, -163.76819158690728, -96.1966807928996, 46.80265605933187, 1.281316841
0154026, -0.039621061963177856, 0.0, 0.0, 0.0], [-149.99999999999972, -60.2
5348325757373, 8.753102401468125, 0.030039200509453964, 0.00549931871438509
, -0.0004960535850235643, -0.0011186653245454964, -22.55119158171042, -29.9
10760842950662, -163.76819158690728, -96.1966807928996, 46.80265605933187, 
1.2813168410154026, -0.039621061963177856, 0.0, 0.0, 0.0], [0.0 0.0 … 0.0 0
.0; -6.264715581448679e6 0.0 … 0.0 0.0; … ; 1.3681239052778866e7 -1.3812025
276515973e6 … -1.2431054724254841e7 0.0; 1.67306062680421e7 -1.441557778471
8082e6 … -2.4194667519528683e7 -4.199435699940902e6], [4.78872498040249e-7,
 -9.57744996080498e-7, -7.647558188585668e-7, 4.077592399267431e-6, 5.25519
8358109485e-6, 0.0, 0.0, 0.0], [[7.183087470603735e-5, 2.884820225230685e-5
, -4.193468547502374e-6, -1.4413944307954413e-8, -2.6336009856120605e-9, 2.
385453082683162e-10, 5.350185739271113e-10, 0.0, 0.0031088349120501364, 0.0
010382562943460323, 1.620564972395239e-5, 1.1624255270302732e-7, -5.6986732
84758135e-7, 4.139569763107239e-7, 0.007374347888760084, 0.0088327444001177
18, 0.00043248349403184977], [-0.00014366174941207467, -5.769640519056922e-
5, 8.38693707801769e-6, 2.8828019629412053e-8, 5.267136464133269e-9, -4.770
91592158638e-10, -1.0700293351458424e-9, 0.0, -0.006219102262881899, -0.002
0765480617190375, -3.2137712002872263e-5, -3.6927953632055284e-7, 1.1376973
25492986e-6, -8.115991539841316e-7, -0.0013404431728162242, -0.012068888149
986428, 0.00204450532640788], [-0.00011471337282878496, -4.607135353473424e
-5, 6.696607755811907e-6, 2.3013799434296052e-8, 4.205808069670968e-9, -3.8
07754647110326e-10, -8.545459228886832e-10, 0.0, -0.0049646843759368845, -0
.0016580495247374867, -2.5852612229006697e-5, -1.977689245647666e-7, 9.0621
59289206165e-7, -6.451538753794531e-7, -0.010332971302265213, -0.0134149960
2001751, -0.0003913196933599126], [0.0006116388598901151, 0.000245645046725
8743, -3.570631513487678e-5, -1.2271885678427044e-7, -2.242492159503127e-8,
 2.0306534997680723e-9, 4.556085361861462e-9, 3.773164260794045e-18, 0.0264
72393500484345, 0.008840646851674898, 0.00013771146418821388, 1.12428312920
90775e-6, -4.839304156128549e-6, 3.4647299476336513e-6, 0.04857465487029709
, 0.06851975472652355, 0.0007197102405282748], [0.0007882797537164225, 0.00
0316588326440537, -4.601788937083647e-5, -1.5815387439473784e-7, -2.8901224
189112315e-8, 2.6168940019450198e-9, 5.872033072669506e-9, -7.5463285215880
9e-18, 0.03411662629503912, 0.011393753901708248, 0.00017761394981620577, 1
.3812204527612728e-6, -6.233631871903383e-6, 4.4566193282203536e-6, 0.06860
381907345679, 0.09005810243092262, 0.0023449819486382707], [4.0831124980535
004e-19, -1.5540711744888946e-9, -5.192066114571554e-10, -8.197185612249342
e-12, -1.0120173702586172e-14, 2.8158850572231593e-13, -1.9667186378978253e
-13, 0.0, 1.0600816719537916e-6, 8.235938160352043e-8, -1.283624524437307e-
7, 6.687814992028861e-8, -4.790291378046679e-9, 1.4733888059248845e-8, -0.0
05976046863892966, -0.002014207791533627, -0.001368723173532952], [6.124668
74708015e-19, -2.0129222572637078e-16, -1.0895456837003922e-16, 3.855558084
9103284e-17, -1.9256042450673074e-17, -7.550571839282398e-18, 5.42292046934
3025e-17, -2.1084198322858913e-26, -3.956632888365561e-11, -1.8584483215330
47e-11, 7.555411677823566e-12, -3.7749928350557595e-12, -2.3571486877192985
e-12, 1.88734346448179e-11, -4.417914980935184e-6, -1.1495247173775045e-5, 
1.7237998601389906e-7], [1.361037499351051e-19, -3.525159676465468e-18, -3.
6549917153174645e-18, 7.53073315670488e-19, -3.752541369597298e-19, 3.25055
2440641999e-19, -3.403527541006535e-18, -2.417956728236717e-26, 4.958648322
857677e-14, 5.2025170907097794e-14, -9.432934623001271e-15, 4.4447795447243
536e-15, -9.538343829656414e-15, 4.742588629403167e-14, -5.824028563054707e
-6, -1.345310752224769e-5, 4.4775909088702425e-7]], [150.0, 60.238818547357
83, -8.758000839578706, -0.03011595948178246, -0.005499703285846862, 0.0004
987093705251409, 0.001116832441838903, 22.563680794381472, 29.9272493400647
23, 163.8151483533587, 96.2495033600122, -46.82714522677127, -1.31491941245
30368, 0.09513052663032795, 5.766166624038283e-14, -2.155827599770177e-15, 
0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0
.0, 0.0, 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
7.088018088938952 17.08801808893901 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-2.0882
3852714956e6 0.0 … 0.0 0.0; 0.0 -2.08823852714956e6 … 0.0 0.0; … ; -17.0880
18088938952 17.08801808893901 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-1.3610374993
51051e-19, 3.525159676465468e-18, 3.6549917153174645e-18, -7.53073315670488
e-19, 3.752541369597298e-19, -3.250552440641999e-19, 3.403527541006535e-18,
 2.417956728236717e-26, -4.958648322857677e-14, -5.2025170907097794e-14, 9.
432934623001271e-15, -4.4447795447243536e-15, 9.538343829656414e-15, -4.742
588629403167e-14, 5.824028563054707e-6, 1.345310752224769e-5, -4.4775909088
702425e-7], [8.506484370944652e-15, -2.647888666400074e-12, -3.124573191671
9247e-12, 7.52930777856137e-13, -3.752452168775825e-13, 3.250535121056365e-
13, -3.4034990574927644e-12, -1.6012958465143824e-22, 8.09529198855015e-10,
 5.331539908879936e-9, -9.157158023011964e-9, 4.420468280795481e-9, -9.5335
89339318159e-9, 4.7372891882895527e-8, -0.09187946110500304, -0.08162543101
56287, 0.023301871008214344], [62501.32395265281, 751140.0643998636, 854878
.3239582614, 999810.7251825486, 999976.2292236947, 999994.6718024244, 99999
1.6311787028, 6622.516556291392, 16329.511635281955, 102480.00757941873, 97
0764.4957787734, 994530.3780121721, 999501.5392165384, 998884.413481377, 15
775.929000048069, 6067.4034516295205, 52041.089689664674], OrdinaryDiffEqRo
senbrock.RodasTableau{Float64, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0
.0; … ; -7.502846399306121 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.91273214028599 -3.1208243349937974 … -28.087943162872662 0
.0; 37.80277123390563 -3.2571969029072276 … -54.66780262877968 -9.488616523
09627], 0.21193756319429014, [0.0, 0.6358126895828704, 0.4095798393397535, 
0.9769306725060716, 0.4288403609558664, 1.0, 1.0, 1.0], [0.2119375631942901
4, -0.42387512638858027, -0.3384627126235924, 1.8046452872882734, 2.3258256
39765069, 0.0, 0.0, 0.0], [25.948786856663858 -2.5579724845846235 … 0.42728
76194431874 -0.17202221070155493; -9.91568850695171 -0.9689944594115154 … -
6.789040303419874 -6.710236069923372; 11.419903575922262 2.8879645146136994
 … -0.15582684282751913 4.883087185713722]), SciMLBase.TimeGradientWrapper{
true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var
"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothin
g, Nothing}, Vector{Float64}, SciMLBase.NullParameters}(SciMLBase.ODEFuncti
on{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slid
er_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sci
MLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}(Main.var"##We
aveSandBox#225".slider_crank_mm!, [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, S
ciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [14.9996610
75300406, -0.3313096283833128, 0.16975711276640582, 0.00018931064918995558,
 2.3771341368630795e-5, -5.328225965594457e-6, -8.368891334942048e-6, 150.0
, 60.23881854735783, -8.758000839578706, -0.03011595948178246, -0.005499703
285846862, 0.0004987093705251409, 0.001116832441838903, -62.38770921173346,
 -163.8151483533587, -18.21558533772592], SciMLBase.NullParameters()), SciM
LBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpec
ialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float
64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Float64, SciMLBase.NullParameters}(SciM
LBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSa
ndBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing
}(Main.var"##WeaveSandBox#225".slider_crank_mm!, [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, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothin
g), 0.09999774050201002, SciMLBase.NullParameters()), [2.8421709430404007e-
13, -7.410960733977845e-12, -7.684519687245484e-12, 1.5820296461743766e-12,
 -7.880649258162897e-13, 6.883312279534759e-13, -7.154803225578599e-12, -2.
014773770042666e-7, -3.3924762377068873e-7, -1.3444899479964079e-5, 6.05382
41086760536e-12, -4.673239573094179e-11, -8.651888983024492e-9, 1.464248333
2688583e-5, 1.5768094295542934e-15, -2.3438282564791635e-15, 0.0], LinearSo
lve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBas
e.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinea
rSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Line
arAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64
, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{F
loat64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, 
Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float6
4}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Choles
ky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, 
Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPiv
oted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, No
thing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, Linear
Solve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, 
LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.Line
arVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, 
SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging
.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLeve
l, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.Li
nearSolveAdjoint{Missing}}([-2.08823852714956e6 0.0 … 0.0 0.0; 0.0 -2.08823
852714956e6 … 0.0 0.0; … ; -17.088018088938952 17.08801808893901 … 0.0 0.0;
 0.0 0.0 … 0.0 0.0], [2.8421709430404007e-13, -7.410960733977845e-12, -7.68
4519687245484e-12, 1.5820296461743766e-12, -7.880649258162897e-13, 6.883312
279534759e-13, -7.154803225578599e-12, -2.014773770042666e-7, -3.3924762377
068873e-7, -1.3444899479964079e-5, 6.0538241086760536e-12, -4.6732395730941
79e-11, -8.651888983024492e-9, 1.4642483332688583e-5, 1.5768094295542934e-1
5, -2.3438282564791635e-15, 0.0], [-1.361037499351051e-19, 3.52515967646546
8e-18, 3.6549917153174645e-18, -7.53073315670488e-19, 3.752541369597298e-19
, -3.250552440641999e-19, 3.403527541006535e-18, 2.417956728236717e-26, -4.
958648322857677e-14, -5.2025170907097794e-14, 9.432934623001271e-15, -4.444
7795447243536e-15, 9.538343829656414e-15, -4.742588629403167e-14, 5.8240285
63054707e-6, 1.345310752224769e-5, -4.4775909088702425e-7], SciMLBase.NullP
arameters(), LinearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmCh
oice.LUFactorization, true, false), LinearSolve.DefaultLinearSolverInit{Lin
earAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCom
pactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{
Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, Linear
Algebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlge
bra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Mat
rix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int3
2}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}
, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, M
atrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing,
 Nothing, Nothing, Matrix{Float64}, Vector{Float64}}(LinearAlgebra.LU{Float
64, Matrix{Float64}, Vector{Int64}}([-2.08823852714956e6 0.0 … 0.0 0.0; -0.
0 -2.08823852714956e6 … 0.0 0.0; … ; 8.182981908807157e-6 -8.18298190880718
5e-6 … -8.687043442092143e-6 -7.432358522798109e-6; -0.0 -0.0 … 0.855649486
2305134 -0.00011162710083651176], [1, 2, 3, 4, 5, 13, 14, 11, 12, 10, 11, 1
2, 14, 14, 15, 16, 17], 0), LinearAlgebra.QRCompactWY{Float64, Matrix{Float
64}, Matrix{Float64}}(Matrix{Float64}(undef, 0, 0), Matrix{Float64}(undef, 
0, 0)), nothing, nothing, nothing, nothing, nothing, nothing, (LinearAlgebr
a.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0),
 Int64[], 0), Int64[]), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{
Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), nothing, nothi
ng, nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Fl
oat64}}(Matrix{Float64}(undef, 0, 0), Float64[], Matrix{Float64}(undef, 0, 
0)), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}(Matrix{Float64}(undef
, 0, 0), 'U', 0), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}([0.71551
06697363188;;], 'U', 0), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector
{Int32}}(Matrix{Float64}(undef, 0, 0), Int32[], 0), Base.RefValue{Int32}(38
7486256)), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matri
x{Float64}(undef, 0, 0), Int64[], 0), Base.RefValue{Int64}(140261301038640)
), LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vecto
r{Int64}}(Matrix{Float64}(undef, 0, 0), Float64[], Int64[]), nothing, nothi
ng, nothing, nothing, nothing, [-2.08823852714956e6 0.0 … 0.0 0.0; 0.0 -2.0
8823852714956e6 … 0.0 0.0; … ; -17.088018088938952 17.08801808893901 … 0.0 
0.0; 0.0 0.0 … 0.0 0.0], [4.083548764187966e233, 4.083548764187966e233, 1.6
525714041314448e40, 4.08354876418433e233, 4.083548764187966e233, 4.08354876
4187966e233, 3.526621543047489e156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
 0.0, 6.92364793340186e-310], true, true, false), false, true, LinearSolve.
InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([62501.
32395265281 0.0 … 0.0 0.0; 0.0 751140.0643998636 … 0.0 0.0; … ; 0.0 0.0 … 6
067.4034516295205 0.0; 0.0 0.0 … 0.0 52041.089689664674]), [62501.323952652
81 0.0 … 0.0 0.0; 0.0 751140.0643998636 … 0.0 0.0; … ; 0.0 0.0 … 6067.40345
16295205 0.0; 0.0 0.0 … 0.0 52041.089689664674], 1.4901161193847656e-8, 1.4
901161193847656e-8, 17, LinearSolve.LinearVerbosity{SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent}(SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLoggi
ng.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Sil
ent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.WarnLevel
(), SciMLLogging.WarnLevel(), SciMLLogging.Silent(), SciMLLogging.Silent(),
 SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciML
Logging.Silent()), LinearSolve.OperatorAssumptions{Bool}(true, LinearSolve.
OperatorCondition.IllConditioned), LinearSolve.LinearSolveAdjoint{Missing}(
missing)), (DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobia
nPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardD
iff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9
}}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}},
 Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}, Float64, 9}}}}((Partials(1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
, Partials(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0,
 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 1.0, 0.0, 0.0,
 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0), Par
tials(0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0,
 0.0, 0.0, 0.0, 1.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
 1.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0)), (Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(150.0,0.0,
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(60.23881854735783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.7580008395
78706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0,1.0,0.0,0.0,0.0,0.0,
0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(
-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0004987093705251409,0.0,0.0
,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(0.001116832441838903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.5636807943
81472,0.0,-0.6399560486458884,0.0,1.6926248488060909,0.4231562122015227,0.1
1392012059292635,-0.09758179197008587,-1.0,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0,-0.00172316732707
50195,-0.00021637450900118045,-1.819536946761116,-0.9098309397504377,-0.283
6772331561528,0.09758179197015751,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0,0.0,0.0,0.0,0.0,0.0,-1.
0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(96
.2495033600122,0.0,0.0,0.0,-9.394047408639098,-1.0976971949109318,0.0,0.0,0
.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-46.8
2714522677127,0.0,0.0,0.0,0.0,2.8973604496152405,0.0,0.0,0.0,0.0), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124530368,0.
0,9.394047408639098,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0,1.0976971949109
318,-2.8973604496152405,0.0,0.0,0.32528171405825235,0.9456171564112642,0.0,
0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.766166
624038283e-14,0.0,0.0,0.0,0.0,-0.32528171405825235,0.0,0.0,0.0,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-2.155827599770177e-
15,1.0,0.0,0.0,0.0,-0.9456171564112642,0.0,0.0,0.0,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
0.0,0.0)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(14.999661075300406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.3313096283833128,0.0,0
.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}}(0.16975711276640582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0001893106
4918995558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(2.3771341368630795e-5,0.0,0.0,0.0,0.0,0.
0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(-5.328225965594457e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.368891334942048e-6,0
.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}(150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.23881854735783,0.0,
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(-8.758000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.030115959
48178246,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}(-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,
0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(0.0004987093705251409,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.001116832441838903,0.0,
0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(-62.38770921173346,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-163.8151483
533587,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(-18.21558533772592,0.0,0.0,0.0,0.0,0.0,0.0,0
.0,1.0,0.0)])), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoA
rgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector
{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 9}}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 9}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 9}}}}((Partials(1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0), Partials(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(
0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 1.0, 
0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 
0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0), Partials(0.0, 
0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0, 1.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0))
, (ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1
50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(60.23881854735783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.7
58000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0,1.0,0.0,0.0
,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}}(-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.000498709370525140
9,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(0.001116832441838903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,
0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.5
63680794381472,0.0,-0.6399560486458884,0.0,1.6926248488060909,0.42315621220
15227,0.11392012059292635,-0.09758179197008587,-1.0,0.0), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0,-0.00172
31673270750195,-0.00021637450900118045,-1.819536946761116,-0.90983093975043
77,-0.2836772331561528,0.09758179197015751,0.0,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0,0.0,0.0,0.0,0.
0,0.0,-1.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(96.2495033600122,0.0,0.0,0.0,-9.394047408639098,-1.0976971949109318,
0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(-46.82714522677127,0.0,0.0,0.0,0.0,2.8973604496152405,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124
530368,0.0,9.394047408639098,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0,1.0976
971949109318,-2.8973604496152405,0.0,0.0,0.32528171405825235,0.945617156411
2642,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(5.766166624038283e-14,0.0,0.0,0.0,0.0,-0.32528171405825235,0.0,0.0,0.0,0.0
), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-2.15582759
9770177e-15,1.0,0.0,0.0,0.0,-0.9456171564112642,0.0,0.0,0.0,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0,0.0,0.0)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}(14.999661075300406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.3313096283833
128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(0.16975711276640582,0.0,0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
0018931064918995558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.3771341368630795e-5,0.0,0.0,0
.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(-5.328225965594457e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), 
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.36889133494
2048e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.2388185473
5783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-8.758000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.
03011595948178246,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.005499703285846862,0.0,0.0,1.0
,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(0.0004987093705251409,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.00111683244183
8903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-62.38770921173346,0.0,0.0,0.0,0.0,0.0,1.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-16
3.8151483533587,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(-18.21558533772592,0.0,0.0,0.0,0.0,
0.0,0.0,0.0,1.0,0.0)])), ())), (DifferentiationInterfaceForwardDiffExt.Forw
ardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciML
Base.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSan
dBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}
, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, ADTypes.Auto
ForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}(Val{T
uple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLB
ase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), 
Matrix{Float64}, Nothing, Nothing, Nothing, 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{}}}(), 0.0,
 ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(150.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(60.23881854735783,0.0), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(-8.758000839578706,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0), Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.00549970328584
6862,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
004987093705251409,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}}(0.001116832441838903,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(22.563680794381472,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(96.2495033600122,0.
0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-46.827145
22677127,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(-1.3149194124530368,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(0.09513052663032795,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}(5.766166624038283e-14,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(-2.155827599770177e-15,0.0), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0)]), ()), Diff
erentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{Sc
iMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Ful
lSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{
Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVE
D), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullPar
ameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, Forwa
rdDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing
, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, AD
Types.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeConfig{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(150.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.238818547
35783,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8
.758000839578706,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}}(-0.03011595948178246,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(-0.005499703285846862,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(0.0004987093705251409,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.001116832441838903,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.563680794
381472,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2
9.927249340064723,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}}(163.8151483533587,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(96.2495033600122,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-46.82714522677127,0.0), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124530368,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0
), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.766166624
038283e-14,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}(-2.155827599770177e-15,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}}(0.0,0.0)]), ())), 1.0e-6, OrdinaryDiffEqRosenbrock.Rodas5
P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{
:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), ty
peof(OrdinaryDiffEqCore.trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFA
ULT_PRECS, OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_
limiter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}())), OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqC
ore.trivial_limiter!, 3), OrdinaryDiffEqCore.DifferentialVarsUndefined(), f
alse), true, 0, SciMLBase.DEStats(124293, 0, 11345, 90760, 11177, 0, 0, 0, 
0, 0, 11177, 168, 0.0), nothing, SciMLBase.ReturnCode.Success, nothing, not
hing, 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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d
0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 
0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d
, 0xb87b692a, 0xb5777171), 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", (0x3
83e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 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", (0x7e7
9da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), 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", (0xe2dbe4c4, 0x8637425f, 0xf9877
c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0
x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402
c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f
567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4e
ce6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4c
df, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23
a85d, 0xb87b692a, 0xb5777171), 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", 
(0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719),
 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
x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348
), 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", (0xe2dbe4c4, 0x8637425f, 0xf
9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff058
7, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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
x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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", (0x8
55d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb577
7171), 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", (0x383e1f76, 0x30e3ca66,
 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe7
3, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20b440a, 0
x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8
bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), 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", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb
3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a772
1, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0
x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c,
 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing},
 RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, 
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546e
fd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7),
 Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a
, 0xb5777171), 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", (0x383e1f76, 0x3
0e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20
b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, 
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", 
(0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), 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", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a73
2b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0
x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2
314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe
fb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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", (0x855d74
ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparame
ters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), 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",
 (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171)
, 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", (0x383e1f76, 0x30e3ca66, 0xe2
7ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x
41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20b440a, 0x8f31
de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 
0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), 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", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed4
6a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x
55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a87
7dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f
14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd
16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0
x4ece6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991
a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3
f23a85d, 0xb87b692a, 0xb5777171), 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
", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f971
9), 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",
 (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912
348), 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", (0xe2dbe4c4, 0x8637425f, 
0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff
0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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",
 (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6)
, 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}([[-2.68938672
e-6, 1.69327969e-5, 0.00463434311, 0.444896105, -1.78591076e-6, 0.0, 0.0, 1
.03339863e-5, -74.99576703969453, 0.20983366850563745, 0.0, -2.303851027879
405e-5, -0.0013444290087241812], [-2.4797784966203626e-6, 1.693279431547978
5e-5, 0.004634343127774041, 0.44489610582496486, -6.054169572838606e-6, 4.4
489610526360277e-7, 4.634343115925256e-9, 1.0333982379911497e-5, -74.995766
40815987, 0.2090849108295245, -7.499576682940703e-5, 0.06633259074438658, 1
.2644137075378408], [-1.535784663886387e-6, 1.6932784817501836e-5, 0.004634
343693676795, 0.44489613423231106, -2.632512031208655e-5, 2.561212442247891
e-6, 2.6679346804030267e-8, 1.0333905335988388e-5, -74.99574607287457, 0.18
109357452007507, -0.00043174140529670264, 0.3818698806584786, 7.28540494725
389], [-8.139057376495109e-7, 1.6932773485351344e-5, 0.004634349375257921, 
0.4448964622292896, -8.556701298210345e-5, 8.874456049155205e-6, 9.24424429
126639e-8, 1.0333108320175138e-5, -74.99551526259089, -0.1365052677092966, 
-0.0014959576158418656, 1.3231954034768192, 25.244222361625333], [-6.922710
478672775e-6, 1.693272928887317e-5, 0.004634357028739535, 0.444897170407276
55, -0.00014081681543768877, 1.51877069769911e-5, 1.5820564144664712e-7, 1.
0331495822896515e-5, -74.99502966225788, -0.7727480195866825, -0.0025601687
431816857, 2.2646397479267115, 43.19479548695843], [-2.5256480834686574e-5,
 1.693250588557067e-5, 0.0046343579502035335, 0.44489836773069436, -0.00019
213602375288313, 2.1852013244424648e-5, 2.276256069885418e-7, 1.03289916605
76117e-5, -74.99424079323938, -1.712550155054772, -0.0036835446180713063, 3
.258624887342853, 62.12962562959397], [-6.404132392073327e-5, 1.69317883333
2115e-5, 0.004634335010611221, 0.44490031296744387, -0.00023839476129785728
, 2.9288954809790306e-5, 3.0509344338374916e-7, 1.0325375745941059e-5, -74.
9930257665034, -2.9461234208753937, -0.004937139549689795, 4.36810366282532
6, 83.23957330086057], [-0.00012918747327861824, 1.6930086746738796e-5, 0.0
04634263085693739, 0.44490320947457096, -0.0002735604799968501, 3.729066848
2717894e-5, 3.8844303156113417e-7, 1.032074878645017e-5, -74.99132459509411
, -4.279632535322565, -0.0062859008637645136, 5.562073707410079, 105.929903
8697619], [-0.0002247717383460254, 1.692667407916987e-5, 0.0046341142435306
47, 0.4449073784666811, -0.00029487757691960327, 4.596381882285736e-5, 4.78
78378406203e-7, 1.0315181313731109e-5, -74.98901999008731, -5.4573390622083
33, -0.00774778843377506, 6.856298466952082, 130.50600700504197], [-0.00034
726844069814185, 1.692071051846411e-5, 0.004633874686261196, 0.444913092771
55755, -0.0003017226262090284, 5.527814621042548e-5, 5.757979776347834e-7, 
1.030891204944985e-5, -74.98601158026834, -6.120714586230084, -0.0093176755
96739957, 8.245888321590908, 156.89618633930547]  …  [0.0008020286713052977
, -8.546288280527453e-6, -0.005615534575051465, -0.037520086004611625, 0.00
03514893661975214, 0.0001965051155337249, 2.4941714047324453e-5, -5.4407662
45479266e-6, 58.835930634605205, -0.3198925411148338, -0.3438602011416623, 
-66.19693016154491, 6816.66541898951], [0.0007784751556486737, -8.524202550
735616e-6, -0.0056014204496661274, -0.036507090864666115, 0.000449560633721
3294, 0.00019547322765516454, 2.478536725549149e-5, -5.429606331915966e-6, 
59.02534951240216, -1.1599050952290872, -0.3422172976763019, -65.6611000905
0966, 6772.4570973934215], [0.0007493945732007367, -8.502933831506708e-6, -
0.005589391012610108, -0.035497573793007275, 0.0005398609179203853, 0.00019
446955378632724, 2.4629375792377147e-5, -5.41577253056693e-6, 59.2135578384
4696, -0.7221998003728867, -0.3405691304637563, -65.16650298724586, 6729.80
7495853553], [0.0007477341975960324, -8.48196660076407e-6, -0.0055757663361
22265, -0.03449080626100859, 0.0006038568278595835, 0.00019348491085328413,
 2.4472284349371186e-5, -5.399599196810432e-6, 59.402332955479245, 0.722824
1577186251, -0.3389002984193465, -64.6987726353641, 6687.959601313051], [0.
0007780152562362363, -8.465560532161395e-6, -0.00556302021708523, -0.033730
58612352277, 0.0006267340994151646, 0.00019274899030912796, 2.4352120517008
72e-5, -5.3862805060219515e-6, 59.54628311105528, 2.082356316096961, -0.337
61713581815483, -64.34718034845663, 6656.167497856794], [0.0008474024981748
236, -8.4453156950517e-6, -0.005545943722827603, -0.032863190483822136, 0.0
006236871003987982, 0.0001919168050001535, 2.421328931803976e-5, -5.3705916
54928213e-6, 59.71218258236627, 3.3756031375778037, -0.33612677667014534, -
63.92945936706057, 6619.00756060769], [0.0009400405464766708, -8.4230043189
67778e-6, -0.00552812444494398, -0.032007622298906635, 0.000594940556282490
6, 0.00019110614342212237, 2.4074899342557003e-5, -5.3553196821177e-6, 59.8
7714282451885, 3.871312781505958, -0.3346322827642305, -63.48481308724556, 
6580.930781837806], [0.0010354929851073122, -8.397158274448231e-6, -0.00551
1852840336653, -0.0311207841233227, 0.0005500705611831494, 0.00019028140817
44453, 2.3930675914686024e-5, -5.340344116411422e-6, 60.04856278680805, 3.2
300348531261958, -0.3330655021928616, -62.981848266959304, 6539.81720618377
9], [0.0011039094449194554, -8.364935095751206e-6, -0.0055007065575519015, 
-0.030105527299985297, 0.0004995726434977589, 0.00018936375460065934, 2.376
5646924035463e-5, -5.324639528625228e-6, 60.24387232960491, 1.1299270449116
252, -0.3312625741124897, -62.36071383347574, 6491.1602782171285], [0.00110
54828633833777, -8.363301821744868e-6, -0.00550043931156992, -0.03005539365
302013, 0.0004974497256808302, 0.00018931928181638544, 2.3757514545923897e-
5, -5.323902505271672e-6, 60.25346746034201, 0.9982044923025679, -0.3311734
9881249836, -62.32917735670344, 6488.730994646191]], nothing, nothing, [0.0
, 1.0e-6, 5.756877522104759e-6, 1.994724967724528e-5, 3.41376218323858e-5, 
4.911703359194749e-5, 6.583304514170661e-5, 8.38183976026002e-5, 0.00010331
277595939536, 0.0001242480767580722  …  0.0997869587084432, 0.0998148372551
5135, 0.0998427158018595, 0.09987085417814394, 0.09989242923148549, 0.09991
742296598366, 0.09994241670048183, 0.09996854584809288, 0.09999852153915258
, 0.1], [[[-2.68938672e-6, 1.69327969e-5, 0.00463434311, 0.444896105, -1.78
591076e-6, 0.0, 0.0, 1.03339863e-5, -74.99576703969453, 0.20983366850563745
, 0.0, -2.303851027879405e-5, -0.0013444290087241812]], [[2.254438527240056
8e-10, -1.0486650946054888e-13, -1.7774041214893287e-11, -8.932621711433484
e-10, -2.041600565752557e-10, -2.6360581744396644e-16, -5.9248365804039954e
-18, 2.1341777406997943e-12, -6.328791916330137e-7, 0.0008936675901809103, 
-2.1028759430980054e-13, 0.000388020073130819, -1.6073965550117066e-6], [2.
9791349334850047e-10, 5.0327281317319657e-17, 4.07992553310936e-15, -1.7922
317665495656e-14, -1.7169787770769243e-10, -2.976576593288894e-16, -5.92703
7685963305e-18, -5.3747516473519314e-17, 2.8176945798385973e-13, -4.9450647
40512117e-8, -2.1097453939062487e-13, -0.0013042741626690026, 6.75741907145
80645e-6], [-4.4208363120763535e-14, 7.446772397662057e-17, 5.2287322414320
26e-15, -2.03927452224229e-14, 1.3814716082186605e-14, -6.674865816182815e-
20, 3.648182355464415e-21, -4.2920849773979583e-17, -5.427510187612877e-13,
 -1.3530877629217652e-7, 1.209488948817355e-17, 0.0011100960967994498, -5.4
39634391336516e-6]], [[5.0595261078236414e-8, -2.2980315760782046e-12, -3.9
685102064893097e-10, -2.0233763479173743e-8, -3.084471997432199e-8, -5.1516
318506088865e-14, -1.0327658749862024e-15, 4.824498340669761e-11, -1.432062
4893241739e-5, 0.020178992613834233, -3.701269355467496e-11, -9.21507470708
8357e-7, 6.257795641326696e-5], [3.203354106572077e-8, 6.760010192680992e-1
4, 4.813199152982325e-12, -1.8972983290735164e-11, -1.8465249878712787e-8, 
-3.20548023526244e-14, -6.387830776509197e-16, -4.162494429893821e-14, 6.93
318156407755e-11, -3.793624067511947e-5, -2.2707377086448765e-11, -5.794186
18333956e-7, 3.942657102921406e-5], [-7.499220431588432e-11, 3.799372448316
604e-14, 2.6555012738190515e-12, -1.0378225067172977e-11, 3.736186857029081
3e-11, -4.6017008800609226e-17, 1.3824558119513322e-17, -2.1908813819755816
e-14, 7.291301589812542e-11, -2.0721380004808745e-5, 3.2319728995881816e-16
, 4.173953593704264e-9, -1.953103312263413e-7]], [[1.8473976751854723e-6, -
1.0467563389418813e-11, -2.8333800175736295e-9, -1.8280286234657386e-7, -1.
0816986702470814e-6, -1.8923817090528062e-12, -3.4154973367206774e-14, 4.23
45571837823457e-10, -0.00012742775260610303, 0.17407893194407859, -1.336280
0100121098e-9, -3.306891712889423e-5, 0.002262344977794904], [8.33543636981
462e-7, 7.818597583222102e-12, 5.542804427961148e-10, -2.1595167062450906e-
9, -4.818113730816683e-7, -8.575481339930847e-13, -1.5735276547506396e-14, 
-4.579546892386922e-12, 8.580977818330425e-9, -0.004294395765543298, -6.027
920396813367e-10, -1.5099722605416573e-5, 0.0010275907543415858], [-2.20208
82416356916e-8, 2.8668630250881015e-12, 1.8883845077693892e-10, -7.58062446
6839602e-10, 1.0945097193117878e-8, -1.2855317308866287e-14, 3.742209933767
639e-15, -1.6644363897634504e-12, 5.408153120638403e-9, -0.0015680155401233
433, 8.094902989919169e-14, 1.197406549091496e-6, -5.6275806615841387e-5]],
 [[4.171307229389677e-6, 3.2633721319192665e-11, 1.1561917196978622e-10, -1
.9445322625547496e-7, -2.439298253782183e-6, -4.558791999869792e-12, -5.600
5686955420523e-14, 3.982760456931397e-10, -0.00012737550423862527, 0.150434
15228303048, -3.1442026739864854e-9, -7.167407579592667e-5, 0.0050037363179
37625], [7.282170498427371e-7, 1.900263441160491e-11, 1.2965440811144852e-9
, -5.1226596824110015e-9, -4.2946496685324445e-7, -9.100901513701985e-13, -
2.300769565064544e-15, -1.1096417891674325e-11, 2.208217888338696e-8, -0.01
0423049701109209, -6.025714113217455e-10, -1.1856615901891992e-5, 0.0008523
669269839143], [-4.2768149893475076e-8, 2.4031382884617114e-12, 1.300144643
8346567e-10, -5.71409403148298e-10, 2.1261560277846696e-8, -2.2259956178206
007e-14, 5.9658742100572524e-15, -1.433957334016246e-12, 4.256260424301549e
-9, -0.0013297214451678076, 1.5015680393481965e-13, 2.2401373787857868e-6, 
-0.00010603232773848886]], [[6.758043854827671e-6, 1.1968067745253972e-10, 
5.524971715846294e-9, -2.3847876926245383e-7, -3.996643958958156e-6, -8.361
633360105228e-12, -2.321461636548206e-14, 3.9482144415128567e-10, -0.000141
83649845135444, 0.12180194690010784, -5.554343126358773e-9, -0.000106687210
61453691, 0.007781130592560196], [6.350758720558699e-7, 3.31971180352916e-1
1, 2.111620995188574e-9, -8.591136963863232e-9, -3.950308048418144e-7, -1.1
772535541215489e-12, 2.3993324971116844e-14, -1.958509896822842e-11, 3.7905
37526643159e-8, -0.01828759096589124, -7.083173194393462e-10, -7.0987810352
315005e-6, 0.0006331363301820273], [-7.392456301908437e-8, 2.04592928770896
16e-12, 4.8405529123549636e-11, -3.434715585066653e-10, 3.679365826434984e-
8, -3.5191867440518216e-14, 8.841780159061994e-15, -1.3139556351369785e-12,
 2.9805728857056716e-9, -0.0011689443087653877, 2.478705498509731e-13, 3.74
252011971429e-6, -0.00017833921271796083]], [[1.015749724897144e-5, 2.95313
70624344075e-10, 1.5383096863593537e-8, -3.3298270752952035e-7, -6.15009006
1028952e-6, -1.5311988392209562e-11, 1.4464455962531767e-13, 4.041920275162
29e-10, -0.0001764673591504482, 0.07063349255527226, -9.663651242703293e-9,
 -0.00013509719496884384, 0.010829499247813838], [4.405351887579582e-7, 5.6
49230641795705e-11, 3.1387780219818123e-9, -1.355673872462985e-8, -3.288853
992567472e-7, -1.8363809212066325e-12, 8.14710178631762e-14, -3.40637011065
6559e-11, 6.093573223830946e-8, -0.031411165528804824, -9.83451726347656e-1
0, 3.3367901697183485e-6, 0.00016024841939085485], [-1.3549009826467915e-7,
 1.1562228230750836e-12, -1.5218075954339163e-10, 2.2446190088794287e-10, 6
.759660975327142e-8, -5.639308108184038e-14, 1.2748177348957217e-14, -1.032
8750932546173e-12, -1.750458041652839e-10, -0.0007755619084806603, 4.200070
864701155e-13, 6.5055878786709605e-6, -0.0003133958267540016]], [[1.2159269
126004944e-5, 5.497046479127827e-10, 2.7467247410265642e-8, -4.309100056544
766e-7, -7.707530429203342e-6, -2.4733337212144005e-11, 5.600259518746127e-
13, 3.3938381205821224e-10, -0.0002040785112766245, -0.035062707369908803, 
-1.4686454194444062e-8, -0.00010646230423051666, 0.011086991677163878], [-1
.495892783442042e-7, 7.38761271471045e-11, 3.0186982533890543e-9, -1.515439
565335523e-8, -6.100759735048916e-8, -2.568321734176265e-12, 1.632610432626
6768e-13, -4.649463486955365e-11, 7.020799764313448e-8, -0.0418482098233076
6, -1.2236682742270626e-9, 2.3671079388845904e-5, -0.0008860332293452094], 
[-1.8518537128459902e-7, -1.6876659178063154e-12, -5.250673557409052e-10, 1
.433698612525519e-9, 9.282097939888192e-8, -5.86675437729133e-14, 9.8268316
59266864e-15, 2.34239587827466e-13, -7.491783609506074e-9, 0.00062778870431
87756, 4.944740628774523e-13, 8.103135437679337e-6, -0.00039832627710654437
]], [[1.215681376173974e-5, 8.941392129095325e-10, 3.8396714109338544e-8, -
5.474841631007217e-7, -8.480003716799978e-6, -3.883965324854432e-11, 1.3243
400635409137e-12, 2.3463117922578746e-10, -0.00023956748658270712, -0.18495
227155740768, -2.1685140306819342e-8, 5.399085719342494e-6, 0.0073367296785
04398], [-1.1369813767695075e-6, 8.181672541673501e-11, 9.771439299502738e-
10, -1.1039846881737641e-8, 3.9741138437390173e-7, -3.562300420190252e-12, 
2.565976712480752e-13, -5.624185910468831e-11, 5.6329000362664853e-8, -0.04
8226517511267684, -1.556871140731319e-9, 5.292006859676602e-5, -0.002459680
451908851], [-2.167131829396606e-7, -6.8433823483310105e-12, -1.07041743715
45643e-9, 3.3668840238111974e-9, 1.097299944874592e-7, -2.6907249051731837e
-14, -5.13497510992371e-15, 2.5955755290356894e-12, -1.94639161056099e-8, 0
.0031972460772076616, 3.9611925472585904e-13, 7.743463997695748e-6, -0.0003
9993911950600734]], [[8.248795662592954e-6, 1.2578069038560727e-9, 3.857710
348255972e-8, -6.409512587483955e-7, -7.487008514075158e-6, -5.758625610514
3834e-11, 2.3798358810990407e-12, 9.59601324684368e-11, -0.0002762272083571
169, -0.3543513293749868, -3.052714929324539e-8, 0.00022791110576101284, -0
.002407330668160217], [-2.4318565327847847e-6, 6.267633677500808e-11, -4.25
112379156225e-9, 4.076875030395436e-9, 1.0123645992120423e-6, -4.5230897001
460144e-12, 2.925727344627046e-13, -5.4466217937104483e-11, -2.888096543784
6527e-9, -0.04145092947498788, -1.927538748832686e-9, 8.197761559854106e-5,
 -0.004173708571645449], [-1.7463491523900187e-7, -1.388312522852239e-11, -
1.5588451593662514e-9, 5.515909180755344e-9, 9.118557368263746e-8, 7.171208
654359897e-14, -3.987769122453524e-14, 5.899924995521035e-12, -3.3293478658
69795e-8, 0.006737149352069212, -8.814730069502638e-14, 2.5640798627964182e
-6, -0.00018234163939863208]]  …  [[2.825943955805258e-5, -3.42257291861728
47e-10, 3.7885613610291184e-6, -5.189877489618118e-6, -1.1383479245613986e-
5, -1.4022257055845814e-8, -2.937023927576935e-10, -1.151572879242077e-9, 0
.0006371505112329451, -0.33580215546773295, -2.6607649355881043e-6, 0.01111
25418365632, -0.44430505119142577], [-2.913781495908564e-6, 2.7442115567624
87e-10, -2.8885019144818345e-7, 9.185402931972554e-7, 1.9982555974599306e-6
, -5.1441123764562014e-11, 3.6465568427951705e-11, -1.1290125445959855e-10,
 -3.896146853714817e-6, -0.1278244449548754, 5.919031904057648e-9, 0.004202
398876556016, -0.15040563407554017], [-7.687974159341888e-7, -2.70172297935
60494e-11, -9.200115165035584e-8, 1.6875566107132483e-7, 3.766864054594064e
-7, 7.849674117211646e-12, -2.80229163964985e-12, 1.72183386316202e-11, -8.
853259578961885e-7, 0.014852061501014029, -1.4378231668472452e-11, -0.00053
13758104141821, 0.019261200528118427]], [[1.4649349804179603e-5, 2.73475210
4603555e-10, 2.340172185629187e-6, -1.3747132777349658e-6, -3.0141254245661
82e-6, -1.4117564669747096e-8, -2.0616863632897075e-10, -1.3608148994446288
e-9, 0.0006198627437170439, -0.6060385791657226, -2.643222976251592e-6, 0.0
19791828841820427, -0.7529624348332494], [-5.629473167545382e-6, 1.50959852
4145486e-10, -6.130680366977614e-7, 1.5074840151641555e-6, 3.32089002632553
88e-6, -1.6553267491766157e-11, 2.3348434577150732e-11, -3.651497312200051e
-11, -7.016346423554059e-6, -0.0606722257841093, 5.761446913398282e-9, 0.00
18865836378364447, -0.0663387853064343], [-2.3673308788676833e-7, -4.150388
719197812e-11, -2.7451223225991587e-8, 4.2979391481453335e-8, 1.05114866858
20616e-7, 1.0883101377210391e-11, -4.51320287496601e-12, 2.4167484051962624
e-11, -2.221150812437985e-7, 0.022027029361350696, -3.0256590220956934e-11,
 -0.0007404736178936294, 0.026684281145579684]], [[-3.2421576901129744e-6, 
4.342470300034854e-10, 3.86640247678136e-7, 3.2992633395953295e-6, 7.352043
215645e-6, -1.409083246709763e-8, -1.6796889182269665e-10, -1.3008208422273
415e-9, 0.0005979497391296971, -0.6331279386748314, -2.626246700142059e-6, 
0.020295760985254804, -0.7661522853709477], [-6.085431930024263e-6, -1.8180
625700469478e-11, -6.640414135543056e-7, 1.5662891236136802e-6, 3.491777370
764205e-6, 2.7635903467758883e-11, 4.8476802937239965e-12, 6.14179776254172
3e-11, -7.375857970179091e-6, 0.028955934628469283, 5.553814189317609e-9, -
0.001094247495955757, 0.04108613202648917], [3.8158899584725717e-7, -3.9408
46030448645e-11, 4.563595361727099e-8, -9.68100422311266e-8, -2.08865919006
56756e-7, 1.0099491466858605e-11, -4.245152690362882e-12, 2.268097905452828
8e-11, 5.08159301426239e-7, 0.0208718891394807, -2.6072187583853253e-11, -0
.0006683733814941678, 0.023971551857764582]], [[-1.8652510987444385e-5, 1.2
007025713601035e-10, -1.2481870644398274e-6, 7.343231684331573e-6, 1.640715
866801475e-5, -1.4201290068451943e-8, -1.8487716104480664e-10, -9.828154197
827571e-10, 0.0005907464367897314, -0.4147680640021688, -2.6586698829697653
e-6, 0.012781696124741351, -0.49197767925028496], [-4.232105494148221e-6, -
1.705689186376626e-10, -4.4142506745580214e-7, 1.1107237701983324e-6, 2.499
8382104870826e-6, 6.759149945083446e-11, -1.1334357348952986e-11, 1.5094068
258365015e-10, -5.018718219055289e-6, 0.11035631624622218, 5.52818896372519
8e-9, -0.0037186272212466295, 0.1350614407051798], [8.86144867029404e-7, -2
.2302493815025253e-11, 1.0341580814939636e-7, -2.056184471112286e-7, -4.655
7601140732173e-7, 6.049148520694876e-12, -2.2198300325535313e-12, 1.3660459
551565967e-11, 1.0701074162746948e-6, 0.01219112120189473, -3.9054268586756
23e-12, -0.00035613710470532625, 0.012626855272034585]], [[-1.4685920935547
039e-5, -2.734863244330416e-10, -1.0831268599153461e-6, 5.392665455291875e-
6, 1.2051076663842416e-5, -8.220480411743307e-9, -1.3360352661579788e-10, -
2.905400013876123e-10, 0.0003429292806438358, -0.02758252803247084, -1.5540
980799339603e-6, 0.0003711283533262142, -0.030986339748082008], [-3.1871460
480087277e-7, -1.0679943779569971e-10, -1.3858371200137995e-8, 1.3418582028
229606e-7, 2.9323402552476447e-7, 3.893470557654745e-11, -7.96544712069966e
-12, 8.705846612103771e-11, -3.593192493905639e-7, 0.06635279835839103, 2.4
58689291276291e-9, -0.0021729784456523803, 0.07831078756907198], [3.5892323
568598977e-7, 6.387693429253558e-13, 4.111799112881722e-8, -8.0432135048213
3e-8, -1.8796025450659073e-7, 1.952301411012139e-13, 1.9509766965674365e-13
, 3.481295947466043e-13, 4.1600352777759504e-7, -3.0661008246292995e-5, 8.5
9517018706856e-12, 1.8699349677694676e-5, -0.0007538718410319657]], [[-1.73
4527374769764e-5, -7.990005988176008e-10, -1.0879894655679788e-6, 6.9769131
657148664e-6, 1.546854237518346e-5, -1.0868073407956576e-8, -2.094161660555
556e-10, -2.4598605073526912e-11, 0.0004630063258459055, 0.2366664671995675
5, -2.0751558401640474e-6, -0.008342869773735348, 0.27596622353444417], [1.
8082381501342274e-6, -1.515009496316219e-10, 2.416918570095186e-7, -3.05369
96107045737e-7, -7.515940666097843e-7, 5.944312121214471e-11, -9.9182055194
88777e-12, 1.3213689149377858e-10, 2.128253330837996e-6, 0.0975741123706126
1, 3.838590208494923e-9, -0.0031298797176585362, 0.11209047976676634], [5.5
56155372102024e-7, 1.560496101127463e-11, 6.190482469519281e-8, -1.20137354
32905118e-7, -2.9373505874172304e-7, -2.8240879295002664e-12, 1.98190752484
01467e-12, -6.966663101592601e-12, 6.13467436696419e-7, -0.0074351271136913
095, 3.171239622234381e-11, 0.00026731320467501926, -0.009765995822123837]]
, [[-8.276414069480718e-6, -1.1314362131232103e-9, 4.076570554346067e-8, 5.
277680106886669e-6, 1.1279846345657275e-5, -1.071231177421936e-8, -2.238528
6220767994e-10, 3.161953719045906e-10, 0.00047346638651789237, 0.4706336523
584923, -2.0634665910336444e-6, -0.015712235574221328, 0.5382998442107649],
 [3.863695065680835e-6, -7.878505286025131e-11, 4.690065345817643e-7, -7.46
1750982180152e-7, -1.843358487170435e-6, 4.584983364826546e-11, -8.05652410
3492954e-13, 9.879248810501094e-11, 4.444575795197604e-6, 0.062468304450547
026, 3.9230054724346584e-9, -0.0019338472794098048, 0.06830101069603864], [
2.92206642203816e-7, 2.6496542032836288e-11, 2.9990779604150014e-8, -5.8162
774232865494e-8, -1.6218994550290867e-7, -5.105258896777009e-12, 3.15913734
0840132e-12, -1.2812806287862525e-11, 2.853150176649858e-7, -0.013062870400
185733, 4.32733050574876e-11, 0.00043467017019644527, -0.015747847065126365
]], [[5.69106168214626e-6, -1.2836113260696724e-9, 1.7916630644390212e-6, 2
.922448969925771e-6, 5.127252182027411e-6, -1.1596621097149507e-8, -2.21761
8205433827e-10, 5.697263374129555e-10, 0.0005341370684479467, 0.61584569970
87003, -2.2418664252972825e-6, -0.02012338314299279, 0.6892847872009117], [
5.451149362593246e-6, 3.803817964710427e-11, 6.372716712067603e-7, -1.04996
17217055647e-6, -2.6987691026049033e-6, 2.7564627071023332e-11, 1.431116619
775108e-11, 5.0468468249943255e-11, 6.136023878824157e-6, 0.007973506255982
784, 4.627513226180778e-9, -0.00013741660797515933, 0.002899797456170214], 
[-8.816701769253905e-8, 3.509435553813128e-11, -1.544685065436176e-8, 2.849
368217274705e-8, 2.5095465831484963e-8, -6.631378432401201e-12, 4.040489467
563292e-12, -1.751677730915989e-11, -1.7257107334768854e-7, -0.017557981555
31451, 5.39224579557048e-11, 0.0005578548871246855, -0.020113400591421884]]
, [[2.838936319349693e-5, -1.184160483167324e-9, 4.750053955368232e-6, -4.2
10276133628601e-8, -3.783725334419287e-6, -1.5213284244809724e-8, -1.926881
2035832914e-10, 7.844373354354289e-10, 0.0007259786732130091, 0.66919444347
43249, -2.9309116494302982e-6, -0.02153268649740366, 0.7202563785606134], [
7.087504875455135e-6, 2.720230784346562e-10, 7.965803696542764e-7, -1.27639
12871046175e-6, -3.6215435045010113e-6, 1.2826459564115911e-12, 4.626221890
9279333e-11, -3.158620692775811e-11, 7.695294839418508e-6, -0.0956260397717
8433, 7.222168096963731e-9, 0.0032092241950938487, -0.11870471472600738], [
-9.320918280840433e-7, 4.4897725345083725e-11, -1.154737192507411e-7, 2.163
5058844349008e-7, 4.3406403619861825e-7, -7.58773495547251e-12, 4.916310202
61432e-12, -2.3313631112573013e-11, -1.1653165266422262e-6, -0.022887230027
003255, 7.189658552587428e-11, 0.0006835306100177301, -0.024458144201504415
]], [[9.713441234675493e-8, -1.1871131569737083e-12, 1.4627835895719131e-8,
 -4.7822733478232855e-9, -2.387343867920611e-8, -3.705913026838864e-11, -2.
0116700205180593e-13, 1.5752404140664704e-12, 1.7951287267528363e-6, 0.0009
789478238989705, -7.093461022405693e-9, -3.129354623310109e-5, 0.0009780529
382846254], [4.849410910369793e-10, 4.7812428535298605e-14, 5.0554525373061
03e-11, -6.88512458960468e-11, -2.634431645961197e-10, -2.348876241749796e-
15, 7.202958682892593e-15, -1.1733981499750829e-14, 1.944105587361398e-9, -
1.8577322233117585e-5, 9.138005047847102e-13, 1.0307240212891554e-6, -3.581
62002303666e-5], [-7.149218742765021e-12, 1.7604735469754228e-16, -8.650515
573470279e-13, 1.6160421962532118e-12, 3.3892115337275272e-12, -2.470861715
084208e-17, 1.8292555077887848e-17, -9.585637202366855e-17, -1.253477930722
2376e-9, -6.480052476783687e-7, -4.172522505782153e-14, -3.470241626505834e
-7, 1.1136954915044293e-5]]], nothing, SciMLBase.ODEProblem{Vector{Float64}
, Tuple{Float64, Float64}, true, ModelingToolkit.MTKParameters{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tu
ple{}, Tuple{}, Tuple{}}, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecial
ize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrapper
s.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Modeling
Toolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Func
tionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Forwa
rdDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64
, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float6
4, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, 
Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVec
tor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{
}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Float64, 1}}}, 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{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{
Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit
.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit
.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProbl
em{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, 
Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpeciali
ze, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d
74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothin
g}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obs
ervedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolk
it.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, 
Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_i
nitializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof
(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObs
ervedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb577717
1), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolk
it.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator
{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.
GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0x
e27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 
0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple
{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationM
etadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_get
ter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{type
of(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f
31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb
, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, 
Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Sy
mbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInter
face.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3ae
d46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 
0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{S
ymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a
877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x
6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexing
Interface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTime
series, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolk
it.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Base.Pairs
{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciMLBase.StandardODEProblem}(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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0
, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266
a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 
0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578
, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), 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", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xdded
f6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9d
b8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c89
0d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0x
dd2049fc, 0x2f912348), 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", (0xe2dbe
4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d
4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc
0cc0, 0x6dc034e6), 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}(FunctionWrappersWrappers.FunctionWrappe
rsWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Floa
t64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}, 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{Float64}, ModelingToolkit.MTKParam
eters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Flo
at64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.F
unctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Modelin
gToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, 
false}((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}}(Ptr{Nothing} @0x00007f7153c50570, Ptr{Nothing} @0x00007f7
19c998018, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunctionWr
apper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfaf
bb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b,
 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void{ModelingTo
olkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15
ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___,
 :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
 (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}(M
odelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1
653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Not
hing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859
bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7
a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), SciMLBase.Void{Mode
lingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653
, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothin
g}}}), 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}}(Ptr{Nothing} @0x00007f7153c52b50, Ptr{Nothing} @0x0000
7f719c998058, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunctio
nWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0x
fafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca6
4b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0
x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters_
__, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}
}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0
ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), 
Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
 :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9
859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 
0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), SciMLBase.Void{M
odelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1
653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Not
hing}}}), 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}}}(Ptr{Nothing} @0x00007f7153c53e70, Ptr{Nothing} @0x0
0007f719c9980a8, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306,
 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7c
ca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void{Mode
lingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653
, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothin
g}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243
), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 
0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64
b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), SciMLBase.Voi
d{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0
ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), 
Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 
1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.Size
dVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tu
ple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007f7153c55dc0, Ptr{Nothing}
 @0x00007f719c9980d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.Generate
dFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592
e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 
0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void
{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0e
c1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), N
othing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb01
33243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb
2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7
cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), SciMLBas
e.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, 
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", 
(0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb01332
43), 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, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit
.ObservedFunctionCache{ModelingToolkit.ODESystem}(Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), Dict{Any, Any}(), false, false, ModelingT
oolkit, false, true), nothing, Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), SciMLBase.OverrideInitData{SciMLBase.Nonl
inearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamete
rs{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, 
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f)
, Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0
a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, 
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Mo
delingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{ty
peof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterf
ace.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0
x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d,
 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_sp
lit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.
PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{f
alse, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x38
3e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Noth
ing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingT
oolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mod
elingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCons
tructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79
da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), No
thing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunctio
n{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction
{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c
30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x
8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Modeling
Toolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunct
ion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c
48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothin
g}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingIn
terface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, No
thing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Multi
pleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIn
dexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}
(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingTool
kit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonlinear
Function{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionW
rapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306
af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae
5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Non
linearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, N
othing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Noth
ing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28
ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a2
1f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlg
ebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionC
ache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSy
stem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16
f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4
ece6d0a, 0x4e546efd), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd
0, 0x325306af, 0xd16f567f), Nothing}(nothing), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76
, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}(nothing)), Line
arAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), Dict{Any, Any}(SymbolicUtils.BasicSymboli
c{Real}[vq₄(t), q₄(t), vq₂(t), vq₁(t), vq₃(t), q₁(t), q₂(t), q₃(t), φ2ˍt(t)
, vq₄ˍt(t), φ2(t), λ₁(t), φ2ˍtt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
), Any[vq₄ˍt(t), φ2ˍtt(t), φ2ˍt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0xd6164a75, 0x9414c9c0
, 0xe211bcbc), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x44b04ca3, 0xf8eac98b, 0x8198dd
8b, 0xa7a5108c, 0x9f72ce11), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0x
d6164a75, 0x9414c9c0, 0xe211bcbc), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4
4b04ca3, 0xf8eac98b, 0x8198dd8b, 0xa7a5108c, 0x9f72ce11), Nothing}(nothing)
)), false, false, ModelingToolkit, false, true), nothing, Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0], nothing), [0.0], ModelingToolkit.MTKParameters{Vector{Float64}, 
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, -2.68938672e-6, 382.45895095266985
, 0.0, 1.69327969e-5, 150.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.033398
63e-5, 0.0, 0.0, 0.0], Float64[], (), (), (), ()), nothing, nothing, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.update_in
itializeprob!, identity ∘ 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf,
 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85
d, 0xb87b692a, 0xb5777171), Nothing}}}(ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
)), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_gett
er#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7
de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0
x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{
Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tuple{Retur
ns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb
5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(identity)}(ide
ntity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0
x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b,
 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}(ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 
0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b
, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}(RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30
e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}(nothing), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing
}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc
, 0x2f912348), 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", (0xe2dbe4c4, 0x8
637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x
6dc034e6), 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}
}}}}}(Dict{Any, Any}(vφ2(t) => Initial(vφ2(t)), q₂(t) => Initial(q₂(t)), λ₂
(t) => Initial(λ₂(t)), vq₁(t) => Initial(vq₁(t)), vq₂(t) => Initial(vq₂(t))
, x₃(t) => Initial(x₃(t)), q₁(t) => Initial(q₁(t)), λ₁(t) => Initial(λ₁(t))
, q₃(t) => Initial(q₃(t)), vq₄(t) => Initial(vq₄(t))…), Dict{Any, Any}(Init
ial(vφ1ˍt(t)) => false, Initial(vφ1ˍtt(t)) => false, Initial(vq₄ˍt(t)) => f
alse, Initial(vx₃(t)) => -2.68938672e-6, Initial(λ₂(t)) => 382.458950952669
85, Initial(λ₂ˍt(t)) => false, Initial(q₄(t)) => 1.69327969e-5, Initial(vφ1
(t)) => 150.0, Initial(vx₃ˍt(t)) => false, Initial(x₃ˍtt(t)) => false…), Di
ct{Any, Any}(), Symbolics.Equation[], true, ModelingToolkit.ReconstructInit
ializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Modelin
gToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Observed
Wrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0
x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, C
omposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentOb
servedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingTool
kit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637
425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, tru
e}}}(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",
 (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912
348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((Modelin
gToolkit.PConstructorApplicator{typeof(identity)}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c89
0d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0x
dd2049fc, 0x2f912348), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671,
 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b0
4a79c, 0xdd2049fc, 0x2f912348), Nothing}}(RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b4
40a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}(nothing), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothin
g}(nothing))), Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}(Float64[]), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tupl
e{}}(()))), identity ∘ SymbolicIndexingInterface.TimeDependentObservedFunct
ion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf98
77c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587,
 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}(Symbolic
IndexingInterface.ContinuousTimeseries(), ModelingToolkit.GeneratedFunction
Wrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc
6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b46
3, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}(RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4,
 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}(nothing), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74)
, Nothing}(nothing)))), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0
xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505,
 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultiplePar
ametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 
0, 0, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2
314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe
fb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}(Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa
2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
efb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}(n
othing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 
0x6dc034e6), Nothing}(nothing))), SymbolicIndexingInterface.MultipleParamet
ersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIn
dexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}[Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}(SciMLStructures.Initials(), 23, false)), SymbolicIndexingI
nterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}(SciMLStructures.Initials(), 7, false)), SymbolicIndexingInterface.Get
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLS
tructures.Initials(), 20, false)), SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 24, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 
12, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 34, false))
, SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 41, false)), SymbolicIndexingInte
rface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}(SciMLStructures.Initials(), 30, false)), SymbolicIndexingInterface.GetPa
rameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStr
uctures.Initials(), 3, false)), SymbolicIndexingInterface.GetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 28, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 13,
 false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Param
eterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 27, false))], 
nothing)), ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mul
tipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}(SymbolicIn
dexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterH
ookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{R
eal}}}}(SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInte
rface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[SymbolicIndexingInterface
.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basi
cSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, fal
se)), Initial(vq₄(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 7, false)), Initial(q₄(t))), 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(), 20, false)), Initial(vq₂(t))), SymbolicIndexingInterface.Para
meterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymb
olic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Par
ameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 24, false)),
 Initial(vq₁(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 12, false)), Initial(vq₃(t))), Symboli
cIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParame
terIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, 
SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 34, false)), Initial(q₁(t))), SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sc
iMLStructures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), Ini
tial(q₂(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 41, false)), Initial(q₃(t))), SymbolicIndex
ingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbol
icUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initial
s(), 30, false)), Initial(φ2ˍt(t))), SymbolicIndexingInterface.ParameterHoo
kWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Rea
l}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}(SciMLStructures.Initials(), 3, false)), Initial(
vq₄ˍt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexing
Interface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInter
face.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}(SciMLStructures.Initials(), 28, false)), Initial(φ2(t))), SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mode
lingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(
), 13, false)), Initial(λ₁(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(), 27, false)), Initial(φ2ˍ
tt(t)))]))), Val{true}()), nothing), [-2.68938672e-6, 1.69327969e-5, 0.0046
3434311, 0.444896105, -1.78591076e-6, 0.0, 0.0, 1.03339863e-5, -74.99576703
969453, 0.20983366850563745, 0.0, -2.303851027879405e-5, 0.0], (0.0, 0.1), 
ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vect
or{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}(Float64[
], [-0.0, 0.0, 0.20983366850563745, -2.68938672e-6, 382.45895095266985, 0.0
, 1.69327969e-5, 150.0, -5062.19492472297, -5062.194924724621  …  0.0, 150.
0, 0.0, 0.0, 0.0, 0.0, 1.03339863e-5, 0.0, -0.0013444290087241812, 0.0], ()
, (), (), ()), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), SciML
Base.StandardODEProblem()), OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.Aut
oForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, No
thing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, not
hing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCor
e.trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDif
fEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_limiter!, ADTypes.Auto
ForwardDiff(chunksize=1, tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}())), OrdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFunction{tr
ue, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrap
per{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, 
Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector
{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, 
Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector
{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}, 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{Float64}, ModelingToolkit.MTKParameters{
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
 Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.Functio
nWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolk
it.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
 Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}
, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem},
 Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.N
onlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParam
eters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{tru
e, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2
, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, 
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f56
7f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece
6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem
}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Bas
e.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof
(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction
{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInt
erface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap
_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolk
it.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrappe
r{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), N
othing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Modeli
ngToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{
ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PC
onstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{tru
e, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7
e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348),
 Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunc
tion{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunct
ion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf98
77c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587,
 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Model
ingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFu
nction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4
02c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Not
hing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexin
gInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParame
terIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}},
 Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mu
ltipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symboli
cIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{tru
e}}, Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vect
or{Float64}}}, Nothing, OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{Flo
at64}, Vector{Float64}, Float64, Vector{Float64}, Matrix{Float64}, Matrix{F
loat64}, OrdinaryDiffEqRosenbrock.RodasTableau{Float64, Float64}, SciMLBase
.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecia
lize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappe
rs.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Modelin
gToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, 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{}},
 Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardD
iff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1
}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple
{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticA
rraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{
}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal
{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolki
t.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolki
t.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProb
lem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{},
 Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecial
ize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855
d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_M
odTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothi
ng}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Ob
servedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingTool
kit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{},
 Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_
initializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeo
f(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentOb
servedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing},
 RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, 
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb57771
71), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingTool
kit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64
, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicato
r{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit
.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0
xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73,
 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tupl
e{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initialization
Metadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_ge
tter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typ
eof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Gener
atedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8
f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bf
b, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}},
 Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), S
ymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInte
rface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3,
 true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :
___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3a
ed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721,
 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{
SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.G
eneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4
a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0
x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexin
gInterface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTim
eseries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit
.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingTool
kit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Sym
bolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPa
rameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Fl
oat64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}
, SciMLBase.UJacobianWrapper{true, 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"
, (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd
), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), N
othing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 
0xb5777171), 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", (0x383e1f76, 0x30e
3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd
ef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20b4
40a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), 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", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b
9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x7
59a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa231
4b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb
5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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}, F
loat64, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float
64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}
, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}
, SciMLBase.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.De
faultLinearSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}},
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.
LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAl
gebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing,
 Nothing, Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vec
tor{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlge
bra.Cholesky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Mat
rix{Float64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU
{Float64, Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlg
ebra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, N
othing, Nothing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64
}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Fl
oat64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Linear
Solve.LinearVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLoggin
g.WarnLevel, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
 SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, Line
arSolve.LinearSolveAdjoint{Missing}}, Tuple{DifferentiationInterfaceForward
DiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}, DifferentiationInterfaceFor
wardDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConf
ig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tupl
e{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}}, Tuple{DifferentiationI
nterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.Time
GradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize,
 FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Fu
nctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingTool
kit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}
, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Function
Wrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}, 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{Float64}, 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}}}, 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{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Floa
t64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obs
ervedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODE
System, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{V
ector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, Static
ArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tupl
e{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab
, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}},
 LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Observe
dFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.N
onlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tupl
e{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initi
alizeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(Mod
elingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObserve
dFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), 
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", (0x383e1f76, 0x30e3ca66, 0xe27e
e296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41
a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}},
 Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetad
ata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#
806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(i
dentity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de
5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0x
e657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticA
rraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Retu
rns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Symbol
icIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface
.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true
), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55
ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{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", (0x402c48b5, 0xfa2314b8, 0x4a877d
ea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14
cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInte
rface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseri
es, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.S
etInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Symbolic
IndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParamet
erIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, S
ymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64
}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vec
tor{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeCo
nfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 
1}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDer
ivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction
{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersW
rapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64
}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVec
tor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{
}, Tuple{}}, Float64}}, 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{}}, Float64}}, FunctionWrappers.FunctionWrapper{Not
hing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}, Vector{Float64}, 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}}}, FunctionWrappers.Func
tionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingTo
olkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, fal
se}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESyste
m}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBas
e.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKPa
rameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{F
loat64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{
true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16
f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4
ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSys
tem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, 
Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typ
eof(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFunct
ion{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexing
Interface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunction
Wrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4
cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f2
3a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobp
map_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArrays
Core.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingTo
olkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWra
pper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
 (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719)
, Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, Mod
elingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializepr
ob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit
.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{
true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f91234
8), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Fl
oat64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedF
unction{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFu
nction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Gene
ratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0x
f9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff05
87, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Mo
delingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObserve
dFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 
Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicInde
xingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface
.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{
true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArra
ysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, 
Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, F
loat64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRos
enbrock.Rodas5P{1, ADTypes.AutoForwardDiff{1, 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.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersW
rappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Noth
ing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64},
 Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, 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{}}, Float64}}, FunctionWra
ppers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Mo
delingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tu
ple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float6
4}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache
{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.
OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, tr
ue, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Sci
MLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb
3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0x
d50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.Uni
formScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Mod
elingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Ve
ctor{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}
}, Nothing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), Compo
sedFunction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_
float)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{Modeling
Toolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e
3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b
19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, Model
ingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{T
uple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Co
mposedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Mo
delingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapp
er{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 
0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868
, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}},
 Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolki
t.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{Compose
dFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modelin
gToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2,
 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x
1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ
₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a7
9c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVec
tor{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Retu
rns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterfac
e.TimeDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeser
ies, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74
), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterfa
ce.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper
{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0x
e8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ
₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 
0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultiplePara
metersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symboli
cIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLSt
ructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{
SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.
ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basic
Symbolic{Real}}}}}}, Val{true}}, Nothing}(FunctionWrappersWrappers.Function
WrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vecto
r{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore
.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{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, 
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWr
apper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MT
KParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vect
or{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrap
pers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, 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
}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float6
4}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple
{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007f7153c50570, Ptr{Nothing} @0x0
0007f719c998018, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedFunc
tionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306,
 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7c
ca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void{Mode
lingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653
, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothin
g}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243
), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 
0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64
b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), SciMLBase.Voi
d{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0
ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), 
Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 
1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.Size
dVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tu
ple{}, Tuple{}}, Float64}}(Ptr{Nothing} @0x00007f7153c52b50, Ptr{Nothing} @
0x00007f719c998058, Base.RefValue{SciMLBase.Void{ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e3
06, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0x
c7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Void{M
odelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1
653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Not
hing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGener
atedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___,
 :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
 (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133
243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2e
c, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cc
a64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(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
xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243
), Nothing}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forw
ardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float6
4, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Siz
edVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, T
uple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007f7153c53e70, Ptr{Nothing
} @0x00007f719c9980a8, Base.RefValue{SciMLBase.Void{ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc59
2e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f,
 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBase.Voi
d{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0
ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), 
Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters_
__, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing},
 RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, 
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0
133243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafb
b2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc
7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(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",
 (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133
243), Nothing}}}), 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}}}(Ptr{Nothing} @0x00007f7153c55dc0, Ptr{No
thing} @0x00007f719c9980d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.Ge
neratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"
#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 
0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661
a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}}(SciMLBas
e.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, 
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", 
(0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb01332
43), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparame
ters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Noth
ing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a,
 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0
xfafbb2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f
, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(nothing)))), 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", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0x
b0133243), 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, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, nothing, ModelingT
oolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}(Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), Dict{Any, Any}(), false, false, ModelingT
oolkit, false, true), nothing, Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), SciMLBase.OverrideInitData{SciMLBase.Nonl
inearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamete
rs{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, 
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f)
, Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0
a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, 
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Mo
delingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{ty
peof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterf
ace.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0
x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d,
 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_sp
lit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.
PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{f
alse, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x38
3e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Noth
ing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingT
oolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mod
elingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCons
tructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79
da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), No
thing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunctio
n{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction
{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c
30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x
8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Modeling
Toolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunct
ion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c
48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothin
g}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingIn
terface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, No
thing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Multi
pleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIn
dexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}
(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingTool
kit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonlinear
Function{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionW
rapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306
af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae
5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Non
linearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, N
othing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Noth
ing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28
ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a2
1f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlg
ebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionC
ache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSy
stem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16
f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4
ece6d0a, 0x4e546efd), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd
0, 0x325306af, 0xd16f567f), Nothing}(nothing), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76
, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}(nothing)), Line
arAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), Dict{Any, Any}(SymbolicUtils.BasicSymboli
c{Real}[vq₄(t), q₄(t), vq₂(t), vq₁(t), vq₃(t), q₁(t), q₂(t), q₃(t), φ2ˍt(t)
, vq₄ˍt(t), φ2(t), λ₁(t), φ2ˍtt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
), Any[vq₄ˍt(t), φ2ˍtt(t), φ2ˍt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0xd6164a75, 0x9414c9c0
, 0xe211bcbc), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x44b04ca3, 0xf8eac98b, 0x8198dd
8b, 0xa7a5108c, 0x9f72ce11), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0x
d6164a75, 0x9414c9c0, 0xe211bcbc), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4
4b04ca3, 0xf8eac98b, 0x8198dd8b, 0xa7a5108c, 0x9f72ce11), Nothing}(nothing)
)), false, false, ModelingToolkit, false, true), nothing, Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0], nothing), [0.0], ModelingToolkit.MTKParameters{Vector{Float64}, 
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, -2.68938672e-6, 382.45895095266985
, 0.0, 1.69327969e-5, 150.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.033398
63e-5, 0.0, 0.0, 0.0], Float64[], (), (), (), ()), nothing, nothing, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.update_in
itializeprob!, identity ∘ 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf,
 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85
d, 0xb87b692a, 0xb5777171), Nothing}}}(ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
)), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_gett
er#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7
de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0
x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{
Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tuple{Retur
ns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb
5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(identity)}(ide
ntity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0
x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b,
 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}(ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 
0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b
, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}(RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30
e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}(nothing), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing
}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc
, 0x2f912348), 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", (0xe2dbe4c4, 0x8
637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x
6dc034e6), 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}
}}}}}(Dict{Any, Any}(vφ2(t) => Initial(vφ2(t)), q₂(t) => Initial(q₂(t)), λ₂
(t) => Initial(λ₂(t)), vq₁(t) => Initial(vq₁(t)), vq₂(t) => Initial(vq₂(t))
, x₃(t) => Initial(x₃(t)), q₁(t) => Initial(q₁(t)), λ₁(t) => Initial(λ₁(t))
, q₃(t) => Initial(q₃(t)), vq₄(t) => Initial(vq₄(t))…), Dict{Any, Any}(Init
ial(vφ1ˍt(t)) => false, Initial(vφ1ˍtt(t)) => false, Initial(vq₄ˍt(t)) => f
alse, Initial(vx₃(t)) => -2.68938672e-6, Initial(λ₂(t)) => 382.458950952669
85, Initial(λ₂ˍt(t)) => false, Initial(q₄(t)) => 1.69327969e-5, Initial(vφ1
(t)) => 150.0, Initial(vx₃ˍt(t)) => false, Initial(x₃ˍtt(t)) => false…), Di
ct{Any, Any}(), Symbolics.Equation[], true, ModelingToolkit.ReconstructInit
ializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Modelin
gToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Observed
Wrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0
x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, C
omposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentOb
servedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingTool
kit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637
425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, tru
e}}}(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",
 (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912
348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((Modelin
gToolkit.PConstructorApplicator{typeof(identity)}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c89
0d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0x
dd2049fc, 0x2f912348), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671,
 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b0
4a79c, 0xdd2049fc, 0x2f912348), Nothing}}(RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b4
40a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}(nothing), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothin
g}(nothing))), Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}(Float64[]), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tupl
e{}}(()))), identity ∘ SymbolicIndexingInterface.TimeDependentObservedFunct
ion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf98
77c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587,
 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}(Symbolic
IndexingInterface.ContinuousTimeseries(), ModelingToolkit.GeneratedFunction
Wrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc
6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b46
3, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}(RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4,
 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}(nothing), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74)
, Nothing}(nothing)))), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0
xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505,
 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultiplePar
ametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 
0, 0, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2
314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe
fb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}(Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa
2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
efb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}(n
othing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 
0x6dc034e6), Nothing}(nothing))), SymbolicIndexingInterface.MultipleParamet
ersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIn
dexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}[Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}(SciMLStructures.Initials(), 23, false)), SymbolicIndexingI
nterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}(SciMLStructures.Initials(), 7, false)), SymbolicIndexingInterface.Get
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLS
tructures.Initials(), 20, false)), SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 24, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 
12, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 34, false))
, SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 41, false)), SymbolicIndexingInte
rface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}(SciMLStructures.Initials(), 30, false)), SymbolicIndexingInterface.GetPa
rameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStr
uctures.Initials(), 3, false)), SymbolicIndexingInterface.GetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 28, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 13,
 false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Param
eterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 27, false))], 
nothing)), ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mul
tipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}(SymbolicIn
dexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterH
ookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{R
eal}}}}(SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInte
rface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[SymbolicIndexingInterface
.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basi
cSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, fal
se)), Initial(vq₄(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 7, false)), Initial(q₄(t))), 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(), 20, false)), Initial(vq₂(t))), SymbolicIndexingInterface.Para
meterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymb
olic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Par
ameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 24, false)),
 Initial(vq₁(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 12, false)), Initial(vq₃(t))), Symboli
cIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParame
terIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, 
SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 34, false)), Initial(q₁(t))), SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sc
iMLStructures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), Ini
tial(q₂(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 41, false)), Initial(q₃(t))), SymbolicIndex
ingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbol
icUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initial
s(), 30, false)), Initial(φ2ˍt(t))), SymbolicIndexingInterface.ParameterHoo
kWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Rea
l}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}(SciMLStructures.Initials(), 3, false)), Initial(
vq₄ˍt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexing
Interface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInter
face.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}(SciMLStructures.Initials(), 28, false)), Initial(φ2(t))), SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mode
lingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(
), 13, false)), Initial(λ₁(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(), 27, false)), Initial(φ2ˍ
tt(t)))]))), Val{true}()), nothing), [[-2.68938672e-6, 1.69327969e-5, 0.004
63434311, 0.444896105, -1.78591076e-6, 0.0, 0.0, 1.03339863e-5, -74.9957670
3969453, 0.20983366850563745, 0.0, -2.303851027879405e-5, -0.00134442900872
41812], [-2.4797784966203626e-6, 1.6932794315479785e-5, 0.00463434312777404
1, 0.44489610582496486, -6.054169572838606e-6, 4.4489610526360277e-7, 4.634
343115925256e-9, 1.0333982379911497e-5, -74.99576640815987, 0.2090849108295
245, -7.499576682940703e-5, 0.06633259074438658, 1.2644137075378408], [-1.5
35784663886387e-6, 1.6932784817501836e-5, 0.004634343693676795, 0.444896134
23231106, -2.632512031208655e-5, 2.561212442247891e-6, 2.6679346804030267e-
8, 1.0333905335988388e-5, -74.99574607287457, 0.18109357452007507, -0.00043
174140529670264, 0.3818698806584786, 7.28540494725389], [-8.139057376495109
e-7, 1.6932773485351344e-5, 0.004634349375257921, 0.4448964622292896, -8.55
6701298210345e-5, 8.874456049155205e-6, 9.24424429126639e-8, 1.033310832017
5138e-5, -74.99551526259089, -0.1365052677092966, -0.0014959576158418656, 1
.3231954034768192, 25.244222361625333], [-6.922710478672775e-6, 1.693272928
887317e-5, 0.004634357028739535, 0.44489717040727655, -0.000140816815437688
77, 1.51877069769911e-5, 1.5820564144664712e-7, 1.0331495822896515e-5, -74.
99502966225788, -0.7727480195866825, -0.0025601687431816857, 2.264639747926
7115, 43.19479548695843], [-2.5256480834686574e-5, 1.693250588557067e-5, 0.
0046343579502035335, 0.44489836773069436, -0.00019213602375288313, 2.185201
3244424648e-5, 2.276256069885418e-7, 1.0328991660576117e-5, -74.99424079323
938, -1.712550155054772, -0.0036835446180713063, 3.258624887342853, 62.1296
2562959397], [-6.404132392073327e-5, 1.693178833332115e-5, 0.00463433501061
1221, 0.44490031296744387, -0.00023839476129785728, 2.9288954809790306e-5, 
3.0509344338374916e-7, 1.0325375745941059e-5, -74.9930257665034, -2.9461234
208753937, -0.004937139549689795, 4.368103662825326, 83.23957330086057], [-
0.00012918747327861824, 1.6930086746738796e-5, 0.004634263085693739, 0.4449
0320947457096, -0.0002735604799968501, 3.7290668482717894e-5, 3.88443031561
13417e-7, 1.032074878645017e-5, -74.99132459509411, -4.279632535322565, -0.
0062859008637645136, 5.562073707410079, 105.9299038697619], [-0.00022477173
83460254, 1.692667407916987e-5, 0.004634114243530647, 0.4449073784666811, -
0.00029487757691960327, 4.596381882285736e-5, 4.7878378406203e-7, 1.0315181
313731109e-5, -74.98901999008731, -5.457339062208333, -0.00774778843377506,
 6.856298466952082, 130.50600700504197], [-0.00034726844069814185, 1.692071
051846411e-5, 0.004633874686261196, 0.44491309277155755, -0.000301722626209
0284, 5.527814621042548e-5, 5.757979776347834e-7, 1.030891204944985e-5, -74
.98601158026834, -6.120714586230084, -0.009317675596739957, 8.2458883215909
08, 156.89618633930547]  …  [0.0008020286713052977, -8.546288280527453e-6, 
-0.005615534575051465, -0.037520086004611625, 0.0003514893661975214, 0.0001
965051155337249, 2.4941714047324453e-5, -5.440766245479266e-6, 58.835930634
605205, -0.3198925411148338, -0.3438602011416623, -66.19693016154491, 6816.
66541898951], [0.0007784751556486737, -8.524202550735616e-6, -0.00560142044
96661274, -0.036507090864666115, 0.0004495606337213294, 0.00019547322765516
454, 2.478536725549149e-5, -5.429606331915966e-6, 59.02534951240216, -1.159
9050952290872, -0.3422172976763019, -65.66110009050966, 6772.4570973934215]
, [0.0007493945732007367, -8.502933831506708e-6, -0.005589391012610108, -0.
035497573793007275, 0.0005398609179203853, 0.00019446955378632724, 2.462937
5792377147e-5, -5.41577253056693e-6, 59.21355783844696, -0.7221998003728867
, -0.3405691304637563, -65.16650298724586, 6729.807495853553], [0.000747734
1975960324, -8.48196660076407e-6, -0.005575766336122265, -0.034490806261008
59, 0.0006038568278595835, 0.00019348491085328413, 2.4472284349371186e-5, -
5.399599196810432e-6, 59.402332955479245, 0.7228241577186251, -0.3389002984
193465, -64.6987726353641, 6687.959601313051], [0.0007780152562362363, -8.4
65560532161395e-6, -0.00556302021708523, -0.03373058612352277, 0.0006267340
994151646, 0.00019274899030912796, 2.435212051700872e-5, -5.386280506021951
5e-6, 59.54628311105528, 2.082356316096961, -0.33761713581815483, -64.34718
034845663, 6656.167497856794], [0.0008474024981748236, -8.4453156950517e-6,
 -0.005545943722827603, -0.032863190483822136, 0.0006236871003987982, 0.000
1919168050001535, 2.421328931803976e-5, -5.370591654928213e-6, 59.712182582
36627, 3.3756031375778037, -0.33612677667014534, -63.92945936706057, 6619.0
0756060769], [0.0009400405464766708, -8.423004318967778e-6, -0.005528124444
94398, -0.032007622298906635, 0.0005949405562824906, 0.00019110614342212237
, 2.4074899342557003e-5, -5.3553196821177e-6, 59.87714282451885, 3.87131278
1505958, -0.3346322827642305, -63.48481308724556, 6580.930781837806], [0.00
10354929851073122, -8.397158274448231e-6, -0.005511852840336653, -0.0311207
841233227, 0.0005500705611831494, 0.0001902814081744453, 2.3930675914686024
e-5, -5.340344116411422e-6, 60.04856278680805, 3.2300348531261958, -0.33306
55021928616, -62.981848266959304, 6539.817206183779], [0.001103909444919455
4, -8.364935095751206e-6, -0.0055007065575519015, -0.030105527299985297, 0.
0004995726434977589, 0.00018936375460065934, 2.3765646924035463e-5, -5.3246
39528625228e-6, 60.24387232960491, 1.1299270449116252, -0.3312625741124897,
 -62.36071383347574, 6491.1602782171285], [0.0011054828633833777, -8.363301
821744868e-6, -0.00550043931156992, -0.03005539365302013, 0.000497449725680
8302, 0.00018931928181638544, 2.3757514545923897e-5, -5.323902505271672e-6,
 60.25346746034201, 0.9982044923025679, -0.33117349881249836, -62.329177356
70344, 6488.730994646191]], [0.0, 1.0e-6, 5.756877522104759e-6, 1.994724967
724528e-5, 3.41376218323858e-5, 4.911703359194749e-5, 6.583304514170661e-5,
 8.38183976026002e-5, 0.00010331277595939536, 0.0001242480767580722  …  0.0
997869587084432, 0.09981483725515135, 0.0998427158018595, 0.099870854178143
94, 0.09989242923148549, 0.09991742296598366, 0.09994241670048183, 0.099968
54584809288, 0.09999852153915258, 0.1], [[[-2.68938672e-6, 1.69327969e-5, 0
.00463434311, 0.444896105, -1.78591076e-6, 0.0, 0.0, 1.03339863e-5, -74.995
76703969453, 0.20983366850563745, 0.0, -2.303851027879405e-5, -0.0013444290
087241812]], [[2.2544385272400568e-10, -1.0486650946054888e-13, -1.77740412
14893287e-11, -8.932621711433484e-10, -2.041600565752557e-10, -2.6360581744
396644e-16, -5.9248365804039954e-18, 2.1341777406997943e-12, -6.32879191633
0137e-7, 0.0008936675901809103, -2.1028759430980054e-13, 0.0003880200731308
19, -1.6073965550117066e-6], [2.9791349334850047e-10, 5.0327281317319657e-1
7, 4.07992553310936e-15, -1.7922317665495656e-14, -1.7169787770769243e-10, 
-2.976576593288894e-16, -5.927037685963305e-18, -5.3747516473519314e-17, 2.
8176945798385973e-13, -4.945064740512117e-8, -2.1097453939062487e-13, -0.00
13042741626690026, 6.7574190714580645e-6], [-4.4208363120763535e-14, 7.4467
72397662057e-17, 5.228732241432026e-15, -2.03927452224229e-14, 1.3814716082
186605e-14, -6.674865816182815e-20, 3.648182355464415e-21, -4.2920849773979
583e-17, -5.427510187612877e-13, -1.3530877629217652e-7, 1.209488948817355e
-17, 0.0011100960967994498, -5.439634391336516e-6]], [[5.0595261078236414e-
8, -2.2980315760782046e-12, -3.9685102064893097e-10, -2.0233763479173743e-8
, -3.084471997432199e-8, -5.1516318506088865e-14, -1.0327658749862024e-15, 
4.824498340669761e-11, -1.4320624893241739e-5, 0.020178992613834233, -3.701
269355467496e-11, -9.215074707088357e-7, 6.257795641326696e-5], [3.20335410
6572077e-8, 6.760010192680992e-14, 4.813199152982325e-12, -1.89729832907351
64e-11, -1.8465249878712787e-8, -3.20548023526244e-14, -6.387830776509197e-
16, -4.162494429893821e-14, 6.93318156407755e-11, -3.793624067511947e-5, -2
.2707377086448765e-11, -5.79418618333956e-7, 3.942657102921406e-5], [-7.499
220431588432e-11, 3.799372448316604e-14, 2.6555012738190515e-12, -1.0378225
067172977e-11, 3.7361868570290813e-11, -4.6017008800609226e-17, 1.382455811
9513322e-17, -2.1908813819755816e-14, 7.291301589812542e-11, -2.07213800048
08745e-5, 3.2319728995881816e-16, 4.173953593704264e-9, -1.953103312263413e
-7]], [[1.8473976751854723e-6, -1.0467563389418813e-11, -2.8333800175736295
e-9, -1.8280286234657386e-7, -1.0816986702470814e-6, -1.8923817090528062e-1
2, -3.4154973367206774e-14, 4.2345571837823457e-10, -0.00012742775260610303
, 0.17407893194407859, -1.3362800100121098e-9, -3.306891712889423e-5, 0.002
262344977794904], [8.33543636981462e-7, 7.818597583222102e-12, 5.5428044279
61148e-10, -2.1595167062450906e-9, -4.818113730816683e-7, -8.57548133993084
7e-13, -1.5735276547506396e-14, -4.579546892386922e-12, 8.580977818330425e-
9, -0.004294395765543298, -6.027920396813367e-10, -1.5099722605416573e-5, 0
.0010275907543415858], [-2.2020882416356916e-8, 2.8668630250881015e-12, 1.8
883845077693892e-10, -7.580624466839602e-10, 1.0945097193117878e-8, -1.2855
317308866287e-14, 3.742209933767639e-15, -1.6644363897634504e-12, 5.4081531
20638403e-9, -0.0015680155401233433, 8.094902989919169e-14, 1.1974065490914
96e-6, -5.6275806615841387e-5]], [[4.171307229389677e-6, 3.2633721319192665
e-11, 1.1561917196978622e-10, -1.9445322625547496e-7, -2.439298253782183e-6
, -4.558791999869792e-12, -5.6005686955420523e-14, 3.982760456931397e-10, -
0.00012737550423862527, 0.15043415228303048, -3.1442026739864854e-9, -7.167
407579592667e-5, 0.005003736317937625], [7.282170498427371e-7, 1.9002634411
60491e-11, 1.2965440811144852e-9, -5.1226596824110015e-9, -4.29464966853244
45e-7, -9.100901513701985e-13, -2.300769565064544e-15, -1.1096417891674325e
-11, 2.208217888338696e-8, -0.010423049701109209, -6.025714113217455e-10, -
1.1856615901891992e-5, 0.0008523669269839143], [-4.2768149893475076e-8, 2.4
031382884617114e-12, 1.3001446438346567e-10, -5.71409403148298e-10, 2.12615
60277846696e-8, -2.2259956178206007e-14, 5.9658742100572524e-15, -1.4339573
34016246e-12, 4.256260424301549e-9, -0.0013297214451678076, 1.5015680393481
965e-13, 2.2401373787857868e-6, -0.00010603232773848886]], [[6.758043854827
671e-6, 1.1968067745253972e-10, 5.524971715846294e-9, -2.3847876926245383e-
7, -3.996643958958156e-6, -8.361633360105228e-12, -2.321461636548206e-14, 3
.9482144415128567e-10, -0.00014183649845135444, 0.12180194690010784, -5.554
343126358773e-9, -0.00010668721061453691, 0.007781130592560196], [6.3507587
20558699e-7, 3.31971180352916e-11, 2.111620995188574e-9, -8.591136963863232
e-9, -3.950308048418144e-7, -1.1772535541215489e-12, 2.3993324971116844e-14
, -1.958509896822842e-11, 3.790537526643159e-8, -0.01828759096589124, -7.08
3173194393462e-10, -7.0987810352315005e-6, 0.0006331363301820273], [-7.3924
56301908437e-8, 2.0459292877089616e-12, 4.8405529123549636e-11, -3.43471558
5066653e-10, 3.679365826434984e-8, -3.5191867440518216e-14, 8.8417801590619
94e-15, -1.3139556351369785e-12, 2.9805728857056716e-9, -0.0011689443087653
877, 2.478705498509731e-13, 3.74252011971429e-6, -0.00017833921271796083]],
 [[1.015749724897144e-5, 2.9531370624344075e-10, 1.5383096863593537e-8, -3.
3298270752952035e-7, -6.150090061028952e-6, -1.5311988392209562e-11, 1.4464
455962531767e-13, 4.04192027516229e-10, -0.0001764673591504482, 0.070633492
55527226, -9.663651242703293e-9, -0.00013509719496884384, 0.010829499247813
838], [4.405351887579582e-7, 5.649230641795705e-11, 3.1387780219818123e-9, 
-1.355673872462985e-8, -3.288853992567472e-7, -1.8363809212066325e-12, 8.14
710178631762e-14, -3.406370110656559e-11, 6.093573223830946e-8, -0.03141116
5528804824, -9.83451726347656e-10, 3.3367901697183485e-6, 0.000160248419390
85485], [-1.3549009826467915e-7, 1.1562228230750836e-12, -1.521807595433916
3e-10, 2.2446190088794287e-10, 6.759660975327142e-8, -5.639308108184038e-14
, 1.2748177348957217e-14, -1.0328750932546173e-12, -1.750458041652839e-10, 
-0.0007755619084806603, 4.200070864701155e-13, 6.5055878786709605e-6, -0.00
03133958267540016]], [[1.2159269126004944e-5, 5.497046479127827e-10, 2.7467
247410265642e-8, -4.309100056544766e-7, -7.707530429203342e-6, -2.473333721
2144005e-11, 5.600259518746127e-13, 3.3938381205821224e-10, -0.000204078511
2766245, -0.035062707369908803, -1.4686454194444062e-8, -0.0001064623042305
1666, 0.011086991677163878], [-1.495892783442042e-7, 7.38761271471045e-11, 
3.0186982533890543e-9, -1.515439565335523e-8, -6.100759735048916e-8, -2.568
321734176265e-12, 1.6326104326266768e-13, -4.649463486955365e-11, 7.0207997
64313448e-8, -0.04184820982330766, -1.2236682742270626e-9, 2.36710793888459
04e-5, -0.0008860332293452094], [-1.8518537128459902e-7, -1.687665917806315
4e-12, -5.250673557409052e-10, 1.433698612525519e-9, 9.282097939888192e-8, 
-5.86675437729133e-14, 9.826831659266864e-15, 2.34239587827466e-13, -7.4917
83609506074e-9, 0.0006277887043187756, 4.944740628774523e-13, 8.10313543767
9337e-6, -0.00039832627710654437]], [[1.215681376173974e-5, 8.9413921290953
25e-10, 3.8396714109338544e-8, -5.474841631007217e-7, -8.480003716799978e-6
, -3.883965324854432e-11, 1.3243400635409137e-12, 2.3463117922578746e-10, -
0.00023956748658270712, -0.18495227155740768, -2.1685140306819342e-8, 5.399
085719342494e-6, 0.007336729678504398], [-1.1369813767695075e-6, 8.18167254
1673501e-11, 9.771439299502738e-10, -1.1039846881737641e-8, 3.9741138437390
173e-7, -3.562300420190252e-12, 2.565976712480752e-13, -5.624185910468831e-
11, 5.6329000362664853e-8, -0.048226517511267684, -1.556871140731319e-9, 5.
292006859676602e-5, -0.002459680451908851], [-2.167131829396606e-7, -6.8433
823483310105e-12, -1.0704174371545643e-9, 3.3668840238111974e-9, 1.09729994
4874592e-7, -2.6907249051731837e-14, -5.13497510992371e-15, 2.5955755290356
894e-12, -1.94639161056099e-8, 0.0031972460772076616, 3.9611925472585904e-1
3, 7.743463997695748e-6, -0.00039993911950600734]], [[8.248795662592954e-6,
 1.2578069038560727e-9, 3.857710348255972e-8, -6.409512587483955e-7, -7.487
008514075158e-6, -5.7586256105143834e-11, 2.3798358810990407e-12, 9.5960132
4684368e-11, -0.0002762272083571169, -0.3543513293749868, -3.05271492932453
9e-8, 0.00022791110576101284, -0.002407330668160217], [-2.4318565327847847e
-6, 6.267633677500808e-11, -4.25112379156225e-9, 4.076875030395436e-9, 1.01
23645992120423e-6, -4.5230897001460144e-12, 2.925727344627046e-13, -5.44662
17937104483e-11, -2.8880965437846527e-9, -0.04145092947498788, -1.927538748
832686e-9, 8.197761559854106e-5, -0.004173708571645449], [-1.74634915239001
87e-7, -1.388312522852239e-11, -1.5588451593662514e-9, 5.515909180755344e-9
, 9.118557368263746e-8, 7.171208654359897e-14, -3.987769122453524e-14, 5.89
9924995521035e-12, -3.329347865869795e-8, 0.006737149352069212, -8.81473006
9502638e-14, 2.5640798627964182e-6, -0.00018234163939863208]]  …  [[2.82594
3955805258e-5, -3.4225729186172847e-10, 3.7885613610291184e-6, -5.189877489
618118e-6, -1.1383479245613986e-5, -1.4022257055845814e-8, -2.9370239275769
35e-10, -1.151572879242077e-9, 0.0006371505112329451, -0.33580215546773295,
 -2.6607649355881043e-6, 0.0111125418365632, -0.44430505119142577], [-2.913
781495908564e-6, 2.744211556762487e-10, -2.8885019144818345e-7, 9.185402931
972554e-7, 1.9982555974599306e-6, -5.1441123764562014e-11, 3.64655684279517
05e-11, -1.1290125445959855e-10, -3.896146853714817e-6, -0.1278244449548754
, 5.919031904057648e-9, 0.004202398876556016, -0.15040563407554017], [-7.68
7974159341888e-7, -2.7017229793560494e-11, -9.200115165035584e-8, 1.6875566
107132483e-7, 3.766864054594064e-7, 7.849674117211646e-12, -2.8022916396498
5e-12, 1.72183386316202e-11, -8.853259578961885e-7, 0.014852061501014029, -
1.4378231668472452e-11, -0.0005313758104141821, 0.019261200528118427]], [[1
.4649349804179603e-5, 2.734752104603555e-10, 2.340172185629187e-6, -1.37471
32777349658e-6, -3.014125424566182e-6, -1.4117564669747096e-8, -2.061686363
2897075e-10, -1.3608148994446288e-9, 0.0006198627437170439, -0.606038579165
7226, -2.643222976251592e-6, 0.019791828841820427, -0.7529624348332494], [-
5.629473167545382e-6, 1.509598524145486e-10, -6.130680366977614e-7, 1.50748
40151641555e-6, 3.3208900263255388e-6, -1.6553267491766157e-11, 2.334843457
7150732e-11, -3.651497312200051e-11, -7.016346423554059e-6, -0.060672225784
1093, 5.761446913398282e-9, 0.0018865836378364447, -0.0663387853064343], [-
2.3673308788676833e-7, -4.150388719197812e-11, -2.7451223225991587e-8, 4.29
79391481453335e-8, 1.0511486685820616e-7, 1.0883101377210391e-11, -4.513202
87496601e-12, 2.4167484051962624e-11, -2.221150812437985e-7, 0.022027029361
350696, -3.0256590220956934e-11, -0.0007404736178936294, 0.0266842811455796
84]], [[-3.2421576901129744e-6, 4.342470300034854e-10, 3.86640247678136e-7,
 3.2992633395953295e-6, 7.352043215645e-6, -1.409083246709763e-8, -1.679688
9182269665e-10, -1.3008208422273415e-9, 0.0005979497391296971, -0.633127938
6748314, -2.626246700142059e-6, 0.020295760985254804, -0.7661522853709477],
 [-6.085431930024263e-6, -1.8180625700469478e-11, -6.640414135543056e-7, 1.
5662891236136802e-6, 3.491777370764205e-6, 2.7635903467758883e-11, 4.847680
2937239965e-12, 6.141797762541723e-11, -7.375857970179091e-6, 0.02895593462
8469283, 5.553814189317609e-9, -0.001094247495955757, 0.04108613202648917],
 [3.8158899584725717e-7, -3.940846030448645e-11, 4.563595361727099e-8, -9.6
8100422311266e-8, -2.0886591900656756e-7, 1.0099491466858605e-11, -4.245152
690362882e-12, 2.2680979054528288e-11, 5.08159301426239e-7, 0.0208718891394
807, -2.6072187583853253e-11, -0.0006683733814941678, 0.023971551857764582]
], [[-1.8652510987444385e-5, 1.2007025713601035e-10, -1.2481870644398274e-6
, 7.343231684331573e-6, 1.640715866801475e-5, -1.4201290068451943e-8, -1.84
87716104480664e-10, -9.828154197827571e-10, 0.0005907464367897314, -0.41476
80640021688, -2.6586698829697653e-6, 0.012781696124741351, -0.4919776792502
8496], [-4.232105494148221e-6, -1.705689186376626e-10, -4.4142506745580214e
-7, 1.1107237701983324e-6, 2.4998382104870826e-6, 6.759149945083446e-11, -1
.1334357348952986e-11, 1.5094068258365015e-10, -5.018718219055289e-6, 0.110
35631624622218, 5.528188963725198e-9, -0.0037186272212466295, 0.13506144070
51798], [8.86144867029404e-7, -2.2302493815025253e-11, 1.0341580814939636e-
7, -2.056184471112286e-7, -4.6557601140732173e-7, 6.049148520694876e-12, -2
.2198300325535313e-12, 1.3660459551565967e-11, 1.0701074162746948e-6, 0.012
19112120189473, -3.905426858675623e-12, -0.00035613710470532625, 0.01262685
5272034585]], [[-1.4685920935547039e-5, -2.734863244330416e-10, -1.08312685
99153461e-6, 5.392665455291875e-6, 1.2051076663842416e-5, -8.22048041174330
7e-9, -1.3360352661579788e-10, -2.905400013876123e-10, 0.000342929280643835
8, -0.02758252803247084, -1.5540980799339603e-6, 0.0003711283533262142, -0.
030986339748082008], [-3.1871460480087277e-7, -1.0679943779569971e-10, -1.3
858371200137995e-8, 1.3418582028229606e-7, 2.9323402552476447e-7, 3.8934705
57654745e-11, -7.96544712069966e-12, 8.705846612103771e-11, -3.593192493905
639e-7, 0.06635279835839103, 2.458689291276291e-9, -0.0021729784456523803, 
0.07831078756907198], [3.5892323568598977e-7, 6.387693429253558e-13, 4.1117
99112881722e-8, -8.04321350482133e-8, -1.8796025450659073e-7, 1.95230141101
2139e-13, 1.9509766965674365e-13, 3.481295947466043e-13, 4.1600352777759504
e-7, -3.0661008246292995e-5, 8.59517018706856e-12, 1.8699349677694676e-5, -
0.0007538718410319657]], [[-1.734527374769764e-5, -7.990005988176008e-10, -
1.0879894655679788e-6, 6.9769131657148664e-6, 1.546854237518346e-5, -1.0868
073407956576e-8, -2.094161660555556e-10, -2.4598605073526912e-11, 0.0004630
063258459055, 0.23666646719956755, -2.0751558401640474e-6, -0.0083428697737
35348, 0.27596622353444417], [1.8082381501342274e-6, -1.515009496316219e-10
, 2.416918570095186e-7, -3.0536996107045737e-7, -7.515940666097843e-7, 5.94
4312121214471e-11, -9.918205519488777e-12, 1.3213689149377858e-10, 2.128253
330837996e-6, 0.09757411237061261, 3.838590208494923e-9, -0.003129879717658
5362, 0.11209047976676634], [5.556155372102024e-7, 1.560496101127463e-11, 6
.190482469519281e-8, -1.2013735432905118e-7, -2.9373505874172304e-7, -2.824
0879295002664e-12, 1.9819075248401467e-12, -6.966663101592601e-12, 6.134674
36696419e-7, -0.0074351271136913095, 3.171239622234381e-11, 0.0002673132046
7501926, -0.009765995822123837]], [[-8.276414069480718e-6, -1.1314362131232
103e-9, 4.076570554346067e-8, 5.277680106886669e-6, 1.1279846345657275e-5, 
-1.071231177421936e-8, -2.2385286220767994e-10, 3.161953719045906e-10, 0.00
047346638651789237, 0.4706336523584923, -2.0634665910336444e-6, -0.01571223
5574221328, 0.5382998442107649], [3.863695065680835e-6, -7.878505286025131e
-11, 4.690065345817643e-7, -7.461750982180152e-7, -1.843358487170435e-6, 4.
584983364826546e-11, -8.056524103492954e-13, 9.879248810501094e-11, 4.44457
5795197604e-6, 0.062468304450547026, 3.9230054724346584e-9, -0.001933847279
4098048, 0.06830101069603864], [2.92206642203816e-7, 2.6496542032836288e-11
, 2.9990779604150014e-8, -5.8162774232865494e-8, -1.6218994550290867e-7, -5
.105258896777009e-12, 3.159137340840132e-12, -1.2812806287862525e-11, 2.853
150176649858e-7, -0.013062870400185733, 4.32733050574876e-11, 0.00043467017
019644527, -0.015747847065126365]], [[5.69106168214626e-6, -1.2836113260696
724e-9, 1.7916630644390212e-6, 2.922448969925771e-6, 5.127252182027411e-6, 
-1.1596621097149507e-8, -2.217618205433827e-10, 5.697263374129555e-10, 0.00
05341370684479467, 0.6158456997087003, -2.2418664252972825e-6, -0.020123383
14299279, 0.6892847872009117], [5.451149362593246e-6, 3.803817964710427e-11
, 6.372716712067603e-7, -1.0499617217055647e-6, -2.6987691026049033e-6, 2.7
564627071023332e-11, 1.431116619775108e-11, 5.0468468249943255e-11, 6.13602
3878824157e-6, 0.007973506255982784, 4.627513226180778e-9, -0.0001374166079
7515933, 0.002899797456170214], [-8.816701769253905e-8, 3.509435553813128e-
11, -1.544685065436176e-8, 2.849368217274705e-8, 2.5095465831484963e-8, -6.
631378432401201e-12, 4.040489467563292e-12, -1.751677730915989e-11, -1.7257
107334768854e-7, -0.01755798155531451, 5.39224579557048e-11, 0.000557854887
1246855, -0.020113400591421884]], [[2.838936319349693e-5, -1.18416048316732
4e-9, 4.750053955368232e-6, -4.210276133628601e-8, -3.783725334419287e-6, -
1.5213284244809724e-8, -1.9268812035832914e-10, 7.844373354354289e-10, 0.00
07259786732130091, 0.6691944434743249, -2.9309116494302982e-6, -0.021532686
49740366, 0.7202563785606134], [7.087504875455135e-6, 2.720230784346562e-10
, 7.965803696542764e-7, -1.2763912871046175e-6, -3.6215435045010113e-6, 1.2
826459564115911e-12, 4.6262218909279333e-11, -3.158620692775811e-11, 7.6952
94839418508e-6, -0.09562603977178433, 7.222168096963731e-9, 0.0032092241950
938487, -0.11870471472600738], [-9.320918280840433e-7, 4.4897725345083725e-
11, -1.154737192507411e-7, 2.1635058844349008e-7, 4.3406403619861825e-7, -7
.58773495547251e-12, 4.91631020261432e-12, -2.3313631112573013e-11, -1.1653
165266422262e-6, -0.022887230027003255, 7.189658552587428e-11, 0.0006835306
100177301, -0.024458144201504415]], [[9.713441234675493e-8, -1.187113156973
7083e-12, 1.4627835895719131e-8, -4.7822733478232855e-9, -2.387343867920611
e-8, -3.705913026838864e-11, -2.0116700205180593e-13, 1.5752404140664704e-1
2, 1.7951287267528363e-6, 0.0009789478238989705, -7.093461022405693e-9, -3.
129354623310109e-5, 0.0009780529382846254], [4.849410910369793e-10, 4.78124
28535298605e-14, 5.055452537306103e-11, -6.88512458960468e-11, -2.634431645
961197e-10, -2.348876241749796e-15, 7.202958682892593e-15, -1.1733981499750
829e-14, 1.944105587361398e-9, -1.8577322233117585e-5, 9.138005047847102e-1
3, 1.0307240212891554e-6, -3.58162002303666e-5], [-7.149218742765021e-12, 1
.7604735469754228e-16, -8.650515573470279e-13, 1.6160421962532118e-12, 3.38
92115337275272e-12, -2.470861715084208e-17, 1.8292555077887848e-17, -9.5856
37202366855e-17, -1.2534779307222376e-9, -6.480052476783687e-7, -4.17252250
5782153e-14, -3.470241626505834e-7, 1.1136954915044293e-5]]], nothing, true
, OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64}
, Float64, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffE
qRosenbrock.RodasTableau{Float64, Float64}, 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", (0x855d74ab, 0xd2df28ae, 0xe
b3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.Runti
meGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0
xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3
e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), 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", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf,
 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x4361486
8, 0x9db8eb5f, 0xb69f9719), 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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0
x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a
79c, 0xdd2049fc, 0x2f912348), 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", (
0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c7
4), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0
xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505,
 0x6fdc0cc0, 0x6dc034e6), 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{}}}, SciMLBase.UJacobianW
rapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Function
WrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWra
pper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, 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{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Modeli
ngToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Flo
at64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Fu
nctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Flo
at64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float6
4, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, 
ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Fl
oat64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Forward
Diff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 
1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.Size
dVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tu
ple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vect
or{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunc
tionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, S
ciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Flo
at64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCor
e.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tupl
e{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingT
oolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df2
8ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a
21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAl
gebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunction
Cache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearS
ystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @Nam
edTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initializeprob
!), ComposedFunction{ComposedFunction{typeof(identity), typeof(ModelingTool
kit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObservedFunction
{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cd
b, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}
}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_gett
er#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7
de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0
x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{
Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{Model
ingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tupl
e{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}
, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWr
apper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__
mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3b
f1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a,
 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticArraysCore
.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple
{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexin
gInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.Continuo
usTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0
xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexi
ngInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFuncti
onWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd85
53b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFun
ction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_R
GF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xf
ff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.Mul
tipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vecto
r{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitial
Unknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingI
nterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{M
odelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUt
ils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Float64, ModelingToolki
t.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, 
Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, LinearSolve.LinearCa
che{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParame
ters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit{
LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QR
CompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Flo
at64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matr
ix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, Lin
earAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearA
lgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, 
Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{I
nt32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float
64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64
, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPre
conditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebr
a.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{
SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging
.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sci
MLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogg
ing.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, 
SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdj
oint{Missing}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwo
ArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vecto
r{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, 
Float64, 1}}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDif
fTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, V
ector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}, Float64, 1}}}}, Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffExt
.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, 
SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 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}, LinearAlgebra.Diagonal{Float64, Vector{Float64}},
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Mod
elingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.Over
rideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, 
ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector
{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBa
se.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Genera
tedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecd
d0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd502
66a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.Uniform
Scaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Modelin
gToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector
{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, N
othing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), ComposedF
unction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_floa
t)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingTool
kit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71
, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e5
78, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingT
oolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple
{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Compos
edFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modeli
ngToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(
2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xdd
edf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x
9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Ret
urns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit.Re
constructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFun
ction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingToo
lkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c
890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 
0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{
Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface.Ti
meDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseries,
 ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2d
be4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGe
neratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpar
ameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), N
othing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.T
imeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2,
 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1
, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe820
2d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6f
dc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultipleParamete
rsGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicInd
exingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruct
ures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{Symb
olicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.Para
meterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymb
olic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTK
Parameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vecto
r{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTypes.
AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}},
 Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, Differ
entiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciM
LBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoS
pecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionW
rappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, 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
{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{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Si
zedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, 
Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, T
uple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}, Float64, 1}}, 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}}}}, false}, LinearAlgebra.Dia
gonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingT
oolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingT
oolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquare
sProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float6
4}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tup
le{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSp
ecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), 
Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolk
it.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, Modelin
gToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Uni
on{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.up
date_initializeprob!), ComposedFunction{ComposedFunction{typeof(identity), 
typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndepend
entObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Noth
ing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_ar
g_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb
5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{Modelin
gToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Fl
oat64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorAppl
icator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca
66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1
fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns
{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.Initializ
ationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var
"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicato
r{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.
GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a
, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc
0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Retur
ns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tupl
e{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identit
y), SymbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexin
gInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(
2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 
0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a
7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdat
edU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingTool
kit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8
, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mode
lingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb562
9c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIn
dexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerN
otTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, Modelin
gToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vecto
r{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.
SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, 
Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vect
or{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, 
Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tupl
e{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, ForwardDiff.De
rivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{1, ADT
ypes.AutoForwardDiff{1, 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.0011054828633833777, -8.363
301821744868e-6, -0.00550043931156992, -0.03005539365302013, 0.000497449725
6808302, 0.00018931928181638544, 2.3757514545923897e-5, -5.323902505271672e
-6, 60.25346746034201, 0.9982044923025679, -0.33117349881249836, -62.329177
35670344, 6488.730994646191], [0.0011039094449194554, -8.364935095751206e-6
, -0.0055007065575519015, -0.030105527299985297, 0.0004995726434977589, 0.0
0018936375460065934, 2.3765646924035463e-5, -5.324639528625228e-6, 60.24387
232960491, 1.1299270449116252, -0.3312625741124897, -62.36071383347574, 649
1.1602782171285], [[9.713441234675493e-8, -1.1871131569737083e-12, 1.462783
5895719131e-8, -4.7822733478232855e-9, -2.387343867920611e-8, -3.7059130268
38864e-11, -2.0116700205180593e-13, 1.5752404140664704e-12, 1.7951287267528
363e-6, 0.0009789478238989705, -7.093461022405693e-9, -3.129354623310109e-5
, 0.0009780529382846254], [4.849410910369793e-10, 4.7812428535298605e-14, 5
.055452537306103e-11, -6.88512458960468e-11, -2.634431645961197e-10, -2.348
876241749796e-15, 7.202958682892593e-15, -1.1733981499750829e-14, 1.9441055
87361398e-9, -1.8577322233117585e-5, 9.138005047847102e-13, 1.0307240212891
554e-6, -3.58162002303666e-5], [-7.149218742765021e-12, 1.7604735469754228e
-16, -8.650515573470279e-13, 1.6160421962532118e-12, 3.3892115337275272e-12
, -2.470861715084208e-17, 1.8292555077887848e-17, -9.585637202366855e-17, -
1.2534779307222376e-9, -6.480052476783687e-7, -4.172522505782153e-14, -3.47
0241626505834e-7, 1.1136954915044293e-5]], [4.220049461089152e-16, 2.937266
9864569927e-20, 4.5973900870465723e-17, -8.49268347090588e-17, -2.136131828
9434723e-16, -1.1000013776865634e-20, 5.603568053375566e-21, -1.45358053033
5541e-20, 1.3000811939315326e-14, -1.520984368210654e-11, 3.367535207660635
e-20, 3.665361972559315e-13, -1.754579357159867e-11], [-0.9982044909557782,
 -0.0011054828632896376, -0.17083202224976415, -33.912630531496845, 1.41957
38269869147, 0.030055393652985027, 0.0055004393115878035, -0.00049744972572
72198, -0.0, 0.0, -0.0, -0.0, 0.0], [-0.9982044909557782, -0.00110548286328
96376, -0.17083202224976415, -33.912630531496845, 1.4195738269869147, 0.030
055393652985027, 0.0055004393115878035, -0.0004974497257272198, -0.0, 0.0, 
-0.0, -0.0, 0.0], [0.0 0.0 … 0.0 0.0; -9.574221927310675e6 0.0 … 0.0 0.0; …
 ; 2.0908725580420453e7 -2.1108603182973065e6 … -1.8998097387373734e7 0.0; 
2.5569003940582544e7 -2.2030998714451566e6 … -3.697615849878636e7 -6.417901
792663342e6], [3.133413892822386e-7, -6.266827785644772e-7, -5.004038689285
485e-7, 2.6680974007527266e-6, 3.438642146338844e-6, 0.0, 0.0, 0.0], [[3.45
34286440463643e-7, 3.4600872932575826e-10, 5.842694799056133e-8, 1.06246169
13162999e-5, -4.5284970270812305e-7, -9.429978617027593e-9, -1.723580727196
1782e-9, 1.5639488960600574e-10, 0.002033939143743438, -0.02779730330390916
4, 1.8876898775260153e-5, 0.006680209613014353, -0.5147466160910901], [-6.9
06867671297049e-7, -6.920174589768649e-10, -1.1685274466715603e-7, -2.12492
3430806823e-5, 9.056997543587542e-7, 1.8859957233904222e-8, 3.4471614547531
084e-9, -3.127897791026733e-10, -0.004068559061953317, 0.05559129290440165,
 -3.775093033800373e-5, -0.013361485185963659, 1.0295317302446076], [-5.457
044002856522e-7, -5.526434484329965e-10, -9.243333952303204e-8, -1.69677208
0378183e-5, 7.217684310528503e-7, 1.5057393629159913e-8, 2.752533715650706e
-9, -2.496676415335414e-10, -0.003248149448385307, 0.04444986412040139, -3.
0146391646667868e-5, -0.010670211991465626, 0.8221084786266611], [2.9229472
276219554e-6, 2.9464821732534017e-9, 4.948434997477425e-7, 9.04693228269264
2e-5, -3.851691665752551e-6, -8.028937640064766e-8, -1.4676227340193449e-8,
 1.3314114793528793e-9, 0.017319336660105118, -0.2368712628584566, 0.000160
73485970981503, 0.05688878377284072, -4.383281285191262], [3.76032100168986
22e-6, 3.797506701082721e-9, 6.367349160149633e-7, 0.00011659713591622838, 
-4.962392903332867e-6, -1.0347431174723971e-7, -1.8914698005717804e-8, 1.71
58125190450708e-9, 0.022320699622680382, -0.3053491472477829, 0.00020715684
210894782, 0.07331993242275267, -5.649220855952802], [9.138214881769333e-9,
 -1.0877619572412617e-13, 1.3744174310641664e-9, -4.5180493233200797e-10, -
2.253352493087837e-9, -3.477139665132127e-12, -1.848416231067234e-14, 1.471
431292901403e-13, 4.84616400294082e-7, 9.229200604765411e-5, -1.99696123169
21646e-9, -2.429483920479338e-6, 7.337720033524005e-5], [9.48493980043238e-
15, 2.581013264959095e-19, -7.839782259614155e-15, 1.562458914972116e-14, -
1.8876735511389904e-15, -4.118071989338048e-20, 2.258612686579903e-20, -1.1
985596605478847e-19, -2.293477297505416e-11, 2.1659451449080483e-9, 6.11506
1656423534e-14, 9.395764427121468e-10, -3.106635574747988e-8], [4.220049461
089152e-16, 2.9372669864569927e-20, 4.5973900870465723e-17, -8.492683470905
88e-17, -2.1361318289434723e-16, -1.1000013776865634e-20, 5.603568053375566
e-21, -1.453580530335541e-20, 1.3000811939315326e-14, -1.520984368210654e-1
1, 3.367535207660635e-20, 3.665361972559315e-13, -1.754579357159867e-11]], 
[1.1299270449116252, 0.0011039094449194554, 0.1906535339642711, 33.90611583
933047, -1.452044714580663, -0.030105527299985297, -0.0055007065575519015, 
0.0004995726434977589, -1.7058319201623817e-9, 8.326672684688674e-17, 1.483
6160078246508e-11, 7.297273896256229e-12, -6.935221108506084e-8], [0.0, 0.0
, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, -
599329.3016171986, -15527.561522826976, 0.0, 0.0, 0.0, -4445.191555294029, 
-17.08973280927014, -25872.46111178833, -2195.290010778645, 384518.98820857
814], [0.0 0.0 … 0.0 0.0; 1.0 0.0 … 0.0 0.0; … ; -0.3252372183723922 56.968
561266773776 … 0.0 0.0; 113.93712253354755 7318.643162492318 … 0.0 0.283681
82822332055], [-3.1914073091035592e6 0.0 … 0.0 0.0; 1.0 -3.1914073091035592
e6 … 0.0 0.0; … ; -0.3252372183723922 56.968561266773776 … 0.0 0.0; 113.937
12253354755 7318.643162492318 … 0.0 0.28368182822332055], [-4.2200494610891
52e-16, -2.9372669864569927e-20, -4.5973900870465723e-17, 8.49268347090588e
-17, 2.1361318289434723e-16, 1.1000013776865634e-20, -5.603568053375566e-21
, 1.453580530335541e-20, -1.3000811939315326e-14, 1.520984368210654e-11, -3
.367535207660635e-20, -3.665361972559315e-13, 1.754579357159867e-11], [4.21
53894203224974e-11, 2.937242416614817e-15, 4.572239539031523e-12, -8.244479
080862806e-12, -2.135065208773085e-11, -1.0997931167326948e-15, 5.603434884
120548e-16, -1.4535727905844025e-15, 2.1224613851832278e-11, -7.14101627022
5174e-7, 2.529580019107548e-15, 5.784912686104828e-10, -2.7026125079612297e
-10], [99889.73078273846, 99999.16351348758, 99452.93856864763, 97077.43269
964824, 99950.06768047107, 99981.06720972418, 99997.62349178684, 99999.4675
388823, 1632.816414053894, 46949.96490086315, 75116.66138940833, 1578.26504
7057699, 15.403193346215707], OrdinaryDiffEqRosenbrock.RodasTableau{Float64
, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0.0; … ; -7.502846399306121 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.912732140285
99 -3.1208243349937974 … -28.087943162872662 0.0; 37.80277123390563 -3.2571
969029072276 … -54.66780262877968 -9.48861652309627], 0.21193756319429014, 
[0.0, 0.6358126895828704, 0.4095798393397535, 0.9769306725060716, 0.4288403
609558664, 1.0, 1.0, 1.0], [0.21193756319429014, -0.42387512638858027, -0.3
384627126235924, 1.8046452872882734, 2.325825639765069, 0.0, 0.0, 0.0], [25
.948786856663858 -2.5579724845846235 … 0.4272876194431874 -0.17202221070155
493; -9.91568850695171 -0.9689944594115154 … -6.789040303419874 -6.71023606
9923372; 11.419903575922262 2.8879645146136994 … -0.15582684282751913 4.883
087185713722]), 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", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f5
67f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
 :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ec
e6d0a, 0x4e546efd), 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cd
f, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a
85d, 0xb87b692a, 0xb5777171), 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", (
0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_
RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), 
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
7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348)
, 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", (0xe2dbe4c4, 0x8637425f, 0xf9
877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587
, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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
402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), 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{}}}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecial
ize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrapper
s.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Modeling
Toolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, Func
tionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{Forward
Diff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Forwa
rdDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64
, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float6
4, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, 
Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVec
tor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{
}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Float64, 1}}}, 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{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{
Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit
.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit
.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProbl
em{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, St
aticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, 
Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpeciali
ze, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d
74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothin
g}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obs
ervedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolk
it.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, 
Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_i
nitializeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof
(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObs
ervedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb577717
1), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolk
it.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator
{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.
GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0x
e27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 
0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple
{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationM
etadata{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_get
ter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{type
of(identity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.Genera
tedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f
31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb
, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{Sta
ticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, 
Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Sy
mbolicIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInter
face.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3ae
d46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 
0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{S
ymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Ge
neratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a
877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x
6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexing
Interface.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTime
series, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.
ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolk
it.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{Symb
olicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetPar
ameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}
}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}(FunctionWra
ppersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrappe
r{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParam
eters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Flo
at64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.Fun
ctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, 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{Float6
4}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, 
Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, For
wardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float
64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDif
f.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}
, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple
{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}, Float64, 1}}}}, false}((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}}(Ptr{Nothing} @0x00007f7153c50
570, Ptr{Nothing} @0x00007f719c998018, Base.RefValue{SciMLBase.Void{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingT
oolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0
x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedF
unctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters_
__, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}
}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89
a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 3, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859
bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 
0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0x
c592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, 
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", 
(0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(noth
ing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tru
e), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb
5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6
d73e89a, 0xb0133243), Nothing}}}), 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}}(Ptr{Nothing} @0x00007f7153
c52b50, Ptr{Nothing} @0x00007f719c998058, Base.RefValue{SciMLBase.Void{Mode
lingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653
, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothin
g}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true),
 RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5),
 Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__m
tk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mod
elingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73
e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(2, 
3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
 :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9
859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6c
f, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7,
 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}(n
othing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859
bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out
, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 
0x6d73e89a, 0xb0133243), Nothing}}}), 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}}}(Ptr{Nothing} @0x00007f7
153c53e70, Ptr{Nothing} @0x00007f719c9980a8, Base.RefValue{SciMLBase.Void{M
odelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mod
elingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1
653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF
_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Not
hing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, tru
e), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb
5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6
d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{(
2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg
_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 
0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70
f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.RuntimeG
eneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6a
e7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameter
s___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing
}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 
3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
 :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9
859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6c
f, 0x6d73e89a, 0xb0133243), Nothing}}}), FunctionWrappers.FunctionWrapper{N
othing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKPara
meters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Fl
oat64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00
007f7153c55dc0, Ptr{Nothing} @0x00007f719c9980d0, Base.RefValue{SciMLBase.V
oid{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
f0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243)
, Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3
, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, 
:___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolk
it.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x98
59bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋o
ut, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf
, 0x6d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFunctionWrap
per{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mt
k_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb
2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0
x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x1
5ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), No
thing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec
, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a
70f6cf, 0x6d73e89a, 0xb0133243), 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, no
thing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESyste
m}(Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), Dict{Any, Any}(), false, false, ModelingT
oolkit, false, true), nothing, Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), SciMLBase.OverrideInitData{SciMLBase.Nonl
inearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamete
rs{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, 
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f)
, Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0
a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, 
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Mo
delingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{ty
peof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterf
ace.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0
x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d,
 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_sp
lit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.
PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{f
alse, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x38
3e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Noth
ing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingT
oolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mod
elingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCons
tructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79
da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), No
thing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunctio
n{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction
{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c
30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x
8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Modeling
Toolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunct
ion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c
48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothin
g}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingIn
terface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, No
thing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Multi
pleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIn
dexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}
(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingTool
kit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonlinear
Function{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionW
rapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306
af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae
5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Non
linearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, N
othing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Noth
ing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28
ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a2
1f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlg
ebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionC
ache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSy
stem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16
f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4
ece6d0a, 0x4e546efd), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd
0, 0x325306af, 0xd16f567f), Nothing}(nothing), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76
, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}(nothing)), Line
arAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), Dict{Any, Any}(SymbolicUtils.BasicSymboli
c{Real}[vq₄(t), q₄(t), vq₂(t), vq₁(t), vq₃(t), q₁(t), q₂(t), q₃(t), φ2ˍt(t)
, vq₄ˍt(t), φ2(t), λ₁(t), φ2ˍtt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
), Any[vq₄ˍt(t), φ2ˍtt(t), φ2ˍt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0xd6164a75, 0x9414c9c0
, 0xe211bcbc), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x44b04ca3, 0xf8eac98b, 0x8198dd
8b, 0xa7a5108c, 0x9f72ce11), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0x
d6164a75, 0x9414c9c0, 0xe211bcbc), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4
4b04ca3, 0xf8eac98b, 0x8198dd8b, 0xa7a5108c, 0x9f72ce11), Nothing}(nothing)
)), false, false, ModelingToolkit, false, true), nothing, Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0], nothing), [0.0], ModelingToolkit.MTKParameters{Vector{Float64}, 
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, -2.68938672e-6, 382.45895095266985
, 0.0, 1.69327969e-5, 150.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.033398
63e-5, 0.0, 0.0, 0.0], Float64[], (), (), (), ()), nothing, nothing, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.update_in
itializeprob!, identity ∘ 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf,
 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85
d, 0xb87b692a, 0xb5777171), Nothing}}}(ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
)), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_gett
er#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7
de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0
x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{
Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tuple{Retur
ns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb
5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(identity)}(ide
ntity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0
x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b,
 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}(ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 
0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b
, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}(RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30
e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}(nothing), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing
}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc
, 0x2f912348), 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", (0xe2dbe4c4, 0x8
637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x
6dc034e6), 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}
}}}}}(Dict{Any, Any}(vφ2(t) => Initial(vφ2(t)), q₂(t) => Initial(q₂(t)), λ₂
(t) => Initial(λ₂(t)), vq₁(t) => Initial(vq₁(t)), vq₂(t) => Initial(vq₂(t))
, x₃(t) => Initial(x₃(t)), q₁(t) => Initial(q₁(t)), λ₁(t) => Initial(λ₁(t))
, q₃(t) => Initial(q₃(t)), vq₄(t) => Initial(vq₄(t))…), Dict{Any, Any}(Init
ial(vφ1ˍt(t)) => false, Initial(vφ1ˍtt(t)) => false, Initial(vq₄ˍt(t)) => f
alse, Initial(vx₃(t)) => -2.68938672e-6, Initial(λ₂(t)) => 382.458950952669
85, Initial(λ₂ˍt(t)) => false, Initial(q₄(t)) => 1.69327969e-5, Initial(vφ1
(t)) => 150.0, Initial(vx₃ˍt(t)) => false, Initial(x₃ˍtt(t)) => false…), Di
ct{Any, Any}(), Symbolics.Equation[], true, ModelingToolkit.ReconstructInit
ializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Modelin
gToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Observed
Wrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0
x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, C
omposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentOb
servedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingTool
kit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637
425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, tru
e}}}(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",
 (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912
348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((Modelin
gToolkit.PConstructorApplicator{typeof(identity)}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c89
0d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0x
dd2049fc, 0x2f912348), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671,
 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b0
4a79c, 0xdd2049fc, 0x2f912348), Nothing}}(RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b4
40a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}(nothing), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothin
g}(nothing))), Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}(Float64[]), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tupl
e{}}(()))), identity ∘ SymbolicIndexingInterface.TimeDependentObservedFunct
ion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf98
77c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587,
 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}(Symbolic
IndexingInterface.ContinuousTimeseries(), ModelingToolkit.GeneratedFunction
Wrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc
6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b46
3, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}(RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4,
 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}(nothing), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74)
, Nothing}(nothing)))), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0
xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505,
 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultiplePar
ametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 
0, 0, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2
314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe
fb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}(Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa
2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
efb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}(n
othing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 
0x6dc034e6), Nothing}(nothing))), SymbolicIndexingInterface.MultipleParamet
ersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIn
dexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}[Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}(SciMLStructures.Initials(), 23, false)), SymbolicIndexingI
nterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}(SciMLStructures.Initials(), 7, false)), SymbolicIndexingInterface.Get
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLS
tructures.Initials(), 20, false)), SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 24, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 
12, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 34, false))
, SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 41, false)), SymbolicIndexingInte
rface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}(SciMLStructures.Initials(), 30, false)), SymbolicIndexingInterface.GetPa
rameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStr
uctures.Initials(), 3, false)), SymbolicIndexingInterface.GetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 28, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 13,
 false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Param
eterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 27, false))], 
nothing)), ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mul
tipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}(SymbolicIn
dexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterH
ookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{R
eal}}}}(SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInte
rface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[SymbolicIndexingInterface
.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basi
cSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, fal
se)), Initial(vq₄(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 7, false)), Initial(q₄(t))), 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(), 20, false)), Initial(vq₂(t))), SymbolicIndexingInterface.Para
meterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymb
olic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Par
ameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 24, false)),
 Initial(vq₁(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 12, false)), Initial(vq₃(t))), Symboli
cIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParame
terIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, 
SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 34, false)), Initial(q₁(t))), SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sc
iMLStructures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), Ini
tial(q₂(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 41, false)), Initial(q₃(t))), SymbolicIndex
ingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbol
icUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initial
s(), 30, false)), Initial(φ2ˍt(t))), SymbolicIndexingInterface.ParameterHoo
kWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Rea
l}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}(SciMLStructures.Initials(), 3, false)), Initial(
vq₄ˍt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexing
Interface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInter
face.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}(SciMLStructures.Initials(), 28, false)), Initial(φ2(t))), SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mode
lingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(
), 13, false)), Initial(λ₁(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(), 27, false)), Initial(φ2ˍ
tt(t)))]))), Val{true}()), nothing), [0.0011039094449194554, -8.36493509575
1206e-6, -0.0055007065575519015, -0.030105527299985297, 0.00049957264349775
89, 0.00018936375460065934, 2.3765646924035463e-5, -5.324639528625228e-6, 6
0.24387232960491, 1.1299270449116252, -0.3312625741124897, -62.360713833475
74, 6491.1602782171285], ModelingToolkit.MTKParameters{StaticArraysCore.Siz
edVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, T
uple{}, Tuple{}}(Float64[], [-0.0, 0.0, 0.20983366850563745, -2.68938672e-6
, 382.45895095266985, 0.0, 1.69327969e-5, 150.0, -5062.19492472297, -5062.1
94924724621  …  0.0, 150.0, 0.0, 0.0, 0.0, 0.0, 1.03339863e-5, 0.0, -0.0013
444290087241812, 0.0], (), (), (), ())), SciMLBase.UJacobianWrapper{true, S
ciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappe
rs.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, 
Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{Stati
cArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tupl
e{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, 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}}, FunctionWrappers
.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Modelin
gToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, 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{}
}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Mode
lingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.Overr
ideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, M
odelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{
0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBas
e.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Generat
edFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd
0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd5026
6a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformS
caling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Modeling
Toolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{
Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, No
thing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), ComposedFu
nction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_float
)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingToolk
it.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71,
 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e57
8, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingTo
olkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{
Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Compose
dFunction{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modelin
gToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xdde
df6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9
db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Retu
rns{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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c8
90d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
 :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0
xdd2049fc, 0x2f912348), 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", (0xe2db
e4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202
d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
 :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fd
c0cc0, 0x6dc034e6), 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}}}}}}, Val{true}}, Nothing}, Float64, ModelingToolkit.MTKParameter
s{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64
}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}(SciMLBase.ODEFunction{true, SciMLBa
se.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{F
unctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Floa
t64}, 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{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple
{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArray
sCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, T
uple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{No
thing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParam
eters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Flo
at64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlg
ebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, M
odelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing, M
odelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLea
stSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vecto
r{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tupl
e{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBas
e.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e5
46efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Model
ingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothing,
 ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Sym
bol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingTo
olkit.update_initializeprob!), ComposedFunction{ComposedFunction{typeof(ide
ntity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.Time
IndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2,
 true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :
___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a
7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :
__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mode
lingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b6
92a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#810"
{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConstru
ctorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, Mo
delingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 
0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
 (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}},
 Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.I
nitializationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingToo
lkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructorA
pplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Modeling
Toolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0x
d20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}
}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Retu
rns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof
(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Symboli
cIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctionW
rapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6
a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463
, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.
GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{Mode
lingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0x
fa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters__
_), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, Sy
mbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingInterface.
IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}},
 ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSette
rs{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingIn
terface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.In
itials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothin
g}(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}((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}}(Ptr{Nothing} @0
x00007f7153c50570, Ptr{Nothing} @0x00007f719c998018, Base.RefValue{SciMLBas
e.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, 
:t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", 
(0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, Run
timeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___
mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb01332
43), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2
, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0
x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f
6cf, 0x6d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFunctionW
rapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfa
fbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b
, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 
0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkp
arameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243),
 Nothing}(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", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb
2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0
x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}), 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{}}, Float64}}(Ptr{Nothing}
 @0x00007f7153c52b50, Ptr{Nothing} @0x00007f719c998058, Base.RefValue{SciML
Base.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters__
_, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :
___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb01
33243), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper
{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec
, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RG
F_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a
70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFuncti
onWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0
xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca
64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec165
3, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), Runt
imeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___m
tkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.va
r"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb013324
3), Nothing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedFunctionW
rapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfa
fbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b
, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}), FunctionWrappers.Functi
onWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, 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} @0x00007f7153c53e70, Ptr{Nothing} @0x00007f719c9980a8, 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", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1
, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0x
b0133243), 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", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb
2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0
x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.GeneratedFun
ctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModT
ag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306
, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGener
atedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7
cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec
1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothing), R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb013
3243), 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", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0
xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca
64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}), FunctionWrappers.Fun
ctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, 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}}}(Ptr{
Nothing} @0x00007f7153c55dc0, Ptr{Nothing} @0x00007f719c9980d0, Base.RefVal
ue{SciMLBase.Void{ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), No
thing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_
arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89
a, 0xb0133243), Nothing}}}}(SciMLBase.Void{ModelingToolkit.GeneratedFunctio
nWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e306, 0x
fafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca6
4b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}}(ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc59
2e306, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f,
 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), Nothing}}(RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
xf0ec1653, 0x15ca6ae7, 0xc592e306, 0xfafbb2ec, 0x9859bcb5), Nothing}(nothin
g), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x4661a20f, 0xc7cca64b, 0x7a70f6cf, 0x6d73e89a, 0
xb0133243), Nothing}(nothing)))), SciMLBase.Void{ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xf0ec1653, 0x15ca6ae7, 0xc592e3
06, 0xfafbb2ec, 0x9859bcb5), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4661a20f, 0x
c7cca64b, 0x7a70f6cf, 0x6d73e89a, 0xb0133243), 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], nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, ModelingToolkit.ObservedFunctionCache{ModelingTo
olkit.ODESystem}(Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), Dict{Any, Any}(), false, false, ModelingT
oolkit, false, true), nothing, Model sys:
Equations (13):
  13 standard: see equations(sys)
Unknowns (13): see unknowns(sys)
  vq₄(t) [defaults to -2.68939e-6]
  q₄(t) [defaults to 1.69328e-5]
  vq₂(t) [defaults to 0.00463434]
  vq₁(t) [defaults to 0.444896]
  ⋮
Observed (14): see observed(sys), SciMLBase.OverrideInitData{SciMLBase.Nonl
inearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParamete
rs{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64
}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, 
SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, t
rue), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :__
_mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f)
, Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__
mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modeli
ngToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0
a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, 
Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Mo
delingToolkit.update_initializeprob!), ComposedFunction{ComposedFunction{ty
peof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterf
ace.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrappe
r{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_
arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0
x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d,
 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_sp
lit#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.S
izedVector{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.
PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{f
alse, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), 
ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x38
3e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeG
eneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Noth
ing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingT
oolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{Mod
elingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PCons
tructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79
da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RG
F_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), No
thing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunctio
n{typeof(identity), SymbolicIndexingInterface.TimeDependentObservedFunction
{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedF
unctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c
30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingTo
olkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x
8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, Modeling
Toolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunct
ion{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c
48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGen
eratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkpara
meters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothin
g}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingIn
terface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameter
Index{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, No
thing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Multi
pleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIn
dexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}
(SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingTool
kit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64,
 Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.Nonlinear
Function{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionW
rapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306
af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFuncti
on{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_
ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae
5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool
}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Non
linearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, N
othing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Noth
ing}(SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingTo
olkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Runt
imeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28
ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunction
s.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Mo
delingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a2
1f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlg
ebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionC
ache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSy
stem, Vector{Float64}, Nothing}(ModelingToolkit.GeneratedFunctionWrapper{(2
, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_
1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolki
t.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16
f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋ou
t, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4
ece6d0a, 0x4e546efd), Nothing}}(RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd
0, 0x325306af, 0xd16f567f), Nothing}(nothing), RuntimeGeneratedFunctions.Ru
ntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76
, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}(nothing)), Line
arAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, ModelingToolkit.Observ
edFunctionCache{ModelingToolkit.NonlinearSystem}(Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), Dict{Any, Any}(SymbolicUtils.BasicSymboli
c{Real}[vq₄(t), q₄(t), vq₂(t), vq₁(t), vq₃(t), q₁(t), q₂(t), q₃(t), φ2ˍt(t)
, vq₄ˍt(t), φ2(t), λ₁(t), φ2ˍtt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
), Any[vq₄ˍt(t), φ2ˍtt(t), φ2ˍt(t)] => ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0xd6164a75, 0x9414c9c0
, 0xe211bcbc), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x44b04ca3, 0xf8eac98b, 0x8198dd
8b, 0xa7a5108c, 0x9f72ce11), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x59806009, 0x122eca51, 0x
d6164a75, 0x9414c9c0, 0xe211bcbc), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x4
4b04ca3, 0xf8eac98b, 0x8198dd8b, 0xa7a5108c, 0x9f72ce11), Nothing}(nothing)
)), false, false, ModelingToolkit, false, true), nothing, Model sys:
Equations (10):
  10 standard: see equations(sys)
Unknowns (1): see unknowns(sys)
  vφ2ˍt(t) [defaults to -74.9958]
Parameters (45): see parameters(sys)
  t
  Initial(vφ1ˍt(t)) [defaults to false]
  Initial(vφ1ˍtt(t)) [defaults to false]
  Initial(vq₄ˍt(t)) [defaults to false]
  ⋮
Observed (26): see observed(sys), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0], nothing), [0.0], ModelingToolkit.MTKParameters{Vector{Float64}, 
StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}
, Tuple{}, Tuple{}}([0.0, 0.0, 0.0, 0.0, -2.68938672e-6, 382.45895095266985
, 0.0, 1.69327969e-5, 150.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.033398
63e-5, 0.0, 0.0, 0.0], Float64[], (), (), (), ()), nothing, nothing, Base.P
airs{Symbol, Union{}, Tuple{}, @NamedTuple{}}()), ModelingToolkit.update_in
itializeprob!, identity ∘ 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", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf,
 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85
d, 0xb87b692a, 0xb5777171), Nothing}}}(ModelingToolkit.GeneratedFunctionWra
pper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__m
tk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf
, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mo
dTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a8
5d, 0xb87b692a, 0xb5777171), Nothing}}(RuntimeGeneratedFunctions.RuntimeGen
eratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x
5560ce01, 0x991a4cdf, 0x392020a7), Nothing}(nothing), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2
b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}(nothing)
)), ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.var"#_gett
er#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float
64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(ident
ity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFunc
tionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunctio
n{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7
de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#
_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0
x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{
Tuple{}}, Returns{Tuple{}}}}}(ModelingToolkit.var"#_getter#806"{Tuple{Retur
ns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunc
tion{ModelingToolkit.PConstructorApplicator{typeof(identity)}, ModelingTool
kit.ObservedWrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, 
true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9
), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :_
_mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Model
ingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb
5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{T
uple{}}}}((Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}
}}(Float64[]), ModelingToolkit.PConstructorApplicator{typeof(identity)}(ide
ntity) ∘ ModelingToolkit.ObservedWrapper{false, ModelingToolkit.GeneratedFu
nctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0
x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b,
 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}(ModelingToolkit.GeneratedF
unctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunc
tion{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 
0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerat
edFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b
, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}(RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30
e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}(nothing), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparam
eters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing
}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modelin
gToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc
, 0x2f912348), 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", (0xe2dbe4c4, 0x8
637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFun
ctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Not
hing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x
6dc034e6), 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}
}}}}}(Dict{Any, Any}(vφ2(t) => Initial(vφ2(t)), q₂(t) => Initial(q₂(t)), λ₂
(t) => Initial(λ₂(t)), vq₁(t) => Initial(vq₁(t)), vq₂(t) => Initial(vq₂(t))
, x₃(t) => Initial(x₃(t)), q₁(t) => Initial(q₁(t)), λ₁(t) => Initial(λ₁(t))
, q₃(t) => Initial(q₃(t)), vq₄(t) => Initial(vq₄(t))…), Dict{Any, Any}(Init
ial(vφ1ˍt(t)) => false, Initial(vφ1ˍtt(t)) => false, Initial(vq₄ˍt(t)) => f
alse, Initial(vx₃(t)) => -2.68938672e-6, Initial(λ₂(t)) => 382.458950952669
85, Initial(λ₂ˍt(t)) => false, Initial(q₄(t)) => 1.69327969e-5, Initial(vφ1
(t)) => 150.0, Initial(vx₃ˍt(t)) => false, Initial(x₃ˍtt(t)) => false…), Di
ct{Any, Any}(), Symbolics.Equation[], true, ModelingToolkit.ReconstructInit
ializeprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{Modelin
gToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Observed
Wrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothin
g}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_
1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTo
olkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0
x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, V
ector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, C
omposedFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentOb
servedFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingTool
kit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.Runtim
eGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolki
t.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637
425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, tru
e}}}(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",
 (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, Ru
ntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :__
_mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912
348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{
Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}((Modelin
gToolkit.PConstructorApplicator{typeof(identity)}(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", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c89
0d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, 
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0x
dd2049fc, 0x2f912348), Nothing}}}(ModelingToolkit.GeneratedFunctionWrapper{
(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Modeling
Toolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671,
 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{
(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b0
4a79c, 0xdd2049fc, 0x2f912348), Nothing}}(RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b4
40a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}(nothing), RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mo
dTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothin
g}(nothing))), Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}}(Float64[]), Returns{Tuple{}}(()), Returns{Tuple{}}(()), Returns{Tupl
e{}}(()))), identity ∘ SymbolicIndexingInterface.TimeDependentObservedFunct
ion{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.Generat
edFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf98
77c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587,
 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}(Symbolic
IndexingInterface.ContinuousTimeseries(), ModelingToolkit.GeneratedFunction
Wrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", 
ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc
6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.v
ar"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b46
3, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}(RuntimeGeneratedFunctions
.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4,
 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}(nothing), Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74)
, Nothing}(nothing)))), 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", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0
xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505,
 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultiplePar
ametersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}}, Nothing}}(Bool[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 
0, 0, 1], SymbolicIndexingInterface.TimeIndependentObservedFunction{Modelin
gToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2
314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___),
 ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe
fb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}(Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingTool
kit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa
2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
efb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}(n
othing), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk
_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 
0x6dc034e6), Nothing}(nothing))), SymbolicIndexingInterface.MultipleParamet
ersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{SymbolicIn
dexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStruc
tures.Initials, Int64}}}, Nothing}(SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}[Symbol
icIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}(SciMLStructures.Initials(), 23, false)), SymbolicIndexingI
nterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.I
nitials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, I
nt64}(SciMLStructures.Initials(), 7, false)), SymbolicIndexingInterface.Get
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLS
tructures.Initials(), 20, false)), SymbolicIndexingInterface.GetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 24, false)), SymbolicIndexingInterface.GetParameterIndex{Modelin
gToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.P
arameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 
12, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInd
ex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 34, false))
, SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), SymbolicI
ndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 41, false)), SymbolicIndexingInte
rface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int6
4}(SciMLStructures.Initials(), 30, false)), SymbolicIndexingInterface.GetPa
rameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStr
uctures.Initials(), 3, false)), SymbolicIndexingInterface.GetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Init
ials(), 28, false)), SymbolicIndexingInterface.GetParameterIndex{ModelingTo
olkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 13,
 false)), SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Param
eterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{
SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 27, false))], 
nothing)), ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.Mul
tipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{Symbolic
IndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}(SymbolicIn
dexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterH
ookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Para
meterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{R
eal}}}}(SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexingInte
rface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Init
ials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}[SymbolicIndexingInterface
.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingT
oolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.Basi
cSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.Paramete
rIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 23, fal
se)), Initial(vq₄(t))), SymbolicIndexingInterface.ParameterHookWrapper{Symb
olicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciM
LStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}(SciMLStructures.Initials(), 7, false)), Initial(q₄(t))), 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(), 20, false)), Initial(vq₂(t))), SymbolicIndexingInterface.Para
meterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymb
olic{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Par
ameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterInde
x{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(), 24, false)),
 Initial(vq₁(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicI
ndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStru
ctures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials
, Int64}(SciMLStructures.Initials(), 12, false)), Initial(vq₃(t))), Symboli
cIndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParame
terIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, 
SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIn
dex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(Modeli
ngToolkit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.I
nitials(), 34, false)), Initial(q₁(t))), SymbolicIndexingInterface.Paramete
rHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Pa
rameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic
{Real}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Paramet
erIndex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{Sc
iMLStructures.Initials, Int64}(SciMLStructures.Initials(), 32, false)), Ini
tial(q₂(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexi
ngInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructure
s.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInt
erface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Ini
tials, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}(SciMLStructures.Initials(), 41, false)), Initial(q₃(t))), SymbolicIndex
ingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterInd
ex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbol
icUtils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mo
delingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingTool
kit.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initial
s(), 30, false)), Initial(φ2ˍt(t))), SymbolicIndexingInterface.ParameterHoo
kWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.Parame
terIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Rea
l}}(SymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIn
dex{SciMLStructures.Initials, Int64}}(ModelingToolkit.ParameterIndex{SciMLS
tructures.Initials, Int64}(SciMLStructures.Initials(), 3, false)), Initial(
vq₄ˍt(t))), SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexing
Interface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}(SymbolicIndexingInter
face.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initi
als, Int64}}(ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64
}(SciMLStructures.Initials(), 28, false)), Initial(φ2(t))), SymbolicIndexin
gInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex
{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Symbolic
Utils.BasicSymbolic{Real}}(SymbolicIndexingInterface.SetParameterIndex{Mode
lingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}(ModelingToolki
t.ParameterIndex{SciMLStructures.Initials, Int64}(SciMLStructures.Initials(
), 13, false)), Initial(λ₁(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(), 27, false)), Initial(φ2ˍ
tt(t)))]))), Val{true}()), nothing), 0.09999852153915258, ModelingToolkit.M
TKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vec
tor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}(Float64[], [-0.0, 0.0, 0.
20983366850563745, -2.68938672e-6, 382.45895095266985, 0.0, 1.69327969e-5, 
150.0, -5062.19492472297, -5062.194924724621  …  0.0, 150.0, 0.0, 0.0, 0.0,
 0.0, 1.03339863e-5, 0.0, -0.0013444290087241812, 0.0], (), (), (), ())), [
1.361999513171952e-9, 9.331814834756536e-14, 1.4852671870180245e-10, -2.744
258154052659e-10, -6.891474058079439e-10, -3.502059753301978e-14, 1.7837294
14173152e-14, -4.6176062105940385e-14, -3.552713678800501e-14, 0.0, -2.0844
437287337314e-13, -3.552713678800501e-15, -1.7053025658242404e-13], LinearS
olve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBa
se.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLine
arSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Lin
earAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float6
4, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{
Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing,
 Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float
64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Chole
sky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float
64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64,
 Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPi
voted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, N
othing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, Linea
rSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}},
 LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.Lin
earVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
 SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLev
el, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.L
inearSolveAdjoint{Missing}}([-3.1914073091035592e6 0.0 … 0.0 0.0; 1.0 -3.19
14073091035592e6 … 0.0 0.0; … ; -0.3252372183723922 56.968561266773776 … 0.
0 0.0; 113.93712253354755 7318.643162492318 … 0.0 0.28368182822332055], [1.
361999513171952e-9, 9.331814834756536e-14, 1.4852671870180245e-10, -2.74425
8154052659e-10, -6.891474058079439e-10, -3.502059753301978e-14, 1.783729414
173152e-14, -4.6176062105940385e-14, -3.552713678800501e-14, 0.0, -2.084443
7287337314e-13, -3.552713678800501e-15, -1.7053025658242404e-13], [-4.22004
9461089152e-16, -2.9372669864569927e-20, -4.5973900870465723e-17, 8.4926834
7090588e-17, 2.1361318289434723e-16, 1.1000013776865634e-20, -5.60356805337
5566e-21, 1.453580530335541e-20, -1.3000811939315326e-14, 1.520984368210654
e-11, -3.367535207660635e-20, -3.665361972559315e-13, 1.754579357159867e-11
], SciMLBase.NullParameters(), LinearSolve.DefaultLinearSolver(LinearSolve.
DefaultAlgorithmChoice.LUFactorization, true, false), LinearSolve.DefaultLi
nearSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, L
inearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothin
g, Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Floa
t64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.L
U{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothin
g, Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Flo
at64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cho
lesky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Flo
at64}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float6
4, Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QR
Pivoted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing,
 Nothing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}(Line
arAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}([-3.1914073091035592e
6 0.0 … 0.0 0.0; 8.772617933796781e-7 -1.13776655151019e8 … 0.3252372183723
922 -0.006971413192052482; … ; -0.0 -0.0 … 0.06364228132353489 -0.005456955
655555674; -0.0 2.8585584445306078e-9 … 0.01394321059504985 0.0001007871190
8079142], [1, 11, 3, 4, 5, 6, 7, 11, 13, 12, 13, 13, 13], 0), LinearAlgebra
.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}(Matrix{Float64}(und
ef, 0, 0), Matrix{Float64}(undef, 0, 0)), nothing, nothing, nothing, nothin
g, nothing, nothing, (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), (LinearAlgebra.LU
{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int
64[], 0), Int64[]), nothing, nothing, nothing, LinearAlgebra.SVD{Float64, F
loat64, Matrix{Float64}, Vector{Float64}}(Matrix{Float64}(undef, 0, 0), Flo
at64[], Matrix{Float64}(undef, 0, 0)), LinearAlgebra.Cholesky{Float64, Matr
ix{Float64}}(Matrix{Float64}(undef, 0, 0), 'U', 0), LinearAlgebra.Cholesky{
Float64, Matrix{Float64}}([0.7155106697363188;;], 'U', 0), (LinearAlgebra.L
U{Float64, Matrix{Float64}, Vector{Int32}}(Matrix{Float64}(undef, 0, 0), In
t32[], 0), Base.RefValue{Int32}(387486256)), (LinearAlgebra.LU{Float64, Mat
rix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Bas
e.RefValue{Int64}(140261301038640)), LinearAlgebra.QRPivoted{Float64, Matri
x{Float64}, Vector{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), F
loat64[], Int64[]), nothing, nothing, nothing, nothing, nothing, [-3.191407
3091035592e6 0.0 … 0.0 0.0; 1.0 -3.1914073091035592e6 … 0.0 0.0; … ; -0.325
2372183723922 56.968561266773776 … 0.0 0.0; 113.93712253354755 7318.6431624
92318 … 0.0 0.28368182822332055], [6.92314190904567e-310, 6.92314689392535e
-310, 6.92314190881642e-310, 6.92314689393484e-310, 6.9231420535982e-310, 6
.92314288299926e-310, 6.92314288300163e-310, 6.923142883004e-310, 6.9231420
536077e-310, 6.92314205361086e-310, 6.923142053614e-310, 6.9231428829969e-3
10, 7.746824126402126e-304], true, true, false), false, true, LinearSolve.I
nvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([99889.7
3078273846 0.0 … 0.0 0.0; 0.0 99999.16351348758 … 0.0 0.0; … ; 0.0 0.0 … 15
78.265047057699 0.0; 0.0 0.0 … 0.0 15.403193346215707]), [99889.73078273846
 0.0 … 0.0 0.0; 0.0 99999.16351348758 … 0.0 0.0; … ; 0.0 0.0 … 1578.2650470
57699 0.0; 0.0 0.0 … 0.0 15.403193346215707], 1.4901161193847656e-8, 1.4901
161193847656e-8, 13, LinearSolve.LinearVerbosity{SciMLLogging.Silent, SciML
Logging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Sile
nt, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLog
ging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.Silent}(SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.
Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent
(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.WarnLevel(),
 SciMLLogging.WarnLevel(), SciMLLogging.Silent(), SciMLLogging.Silent(), Sc
iMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLog
ging.Silent()), LinearSolve.OperatorAssumptions{Bool}(true, LinearSolve.Ope
ratorCondition.IllConditioned), LinearSolve.LinearSolveAdjoint{Missing}(mis
sing)), (DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPr
ep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}
}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Ve
ctor{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}, Float64, 1}}}}((Partials(1.0,),), (ForwardDiff.Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(1.1299270449116252,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0011039094449194554,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.19065353396427
11,0.09549030180293717), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}}(33.90611583933047,-0.19097942482835967), Dual{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}}(-1.452044714580663,1.2214542762476192
e-5), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.03010
5527299985297,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(-0.0055007065575519015,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}}(0.0004995726434977589,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(-1.7058319201623817e-9,-0.00180833424367
9749), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(8.32667
2684688674e-17,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(1.4836160078246508e-11,-0.006971413192052482), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(7.297273896256229e-12,0.0), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-6.935221108506084e-8
,0.28368182822332055)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(0.0011039094449194554,0.0), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(-8.364935095751206e-6,0.0), Dual{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.0055007065575519015,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.030105527
299985297,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}(0.0004995726434977589,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}(0.00018936375460065934,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(2.3765646924035463e-5,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-5.324639528625228e-6,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.2438723296049
1,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.1299
270449116252,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}(-0.3312625741124897,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(-62.36071383347574,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(6491.1602782171285,1.0)])), ()), Differentiatio
nInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing, ForwardDiff
.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Flo
at64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, Tuple{}}(Val{Nothing
}(), ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}((Part
ials(1.0,),), (ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}}(1.1299270449116252,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(0.0011039094449194554,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(0.1906535339642711,0.09549030180293717)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(33.906115839
33047,-0.19097942482835967), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(-1.452044714580663,1.2214542762476192e-5), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.030105527299985297,0.0), Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.00550070655755
19015,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.
0004995726434977589,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}(-1.7058319201623817e-9,-0.001808334243679749), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(8.326672684688674e-17,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.48361600782465
08e-11,-0.006971413192052482), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(7.297273896256229e-12,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(-6.935221108506084e-8,0.28368182822332055)],
 ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
011039094449194554,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}}(-8.364935095751206e-6,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}(-0.0055007065575519015,0.0), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.030105527299985297,0.0), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0004995726434977589
,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.00018
936375460065934,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}}(2.3765646924035463e-5,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(-5.324639528625228e-6,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(60.24387232960491,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.1299270449116252,0.0), Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.331262574112489
7,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-62.36
071383347574,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}}(6491.1602782171285,1.0)])), ())), (DifferentiationInterfaceForwardDiff
Ext.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{tru
e, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWr
appers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothi
ng, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolkit.MTKParameters{S
taticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, 
Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWr
apper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, ModelingToolkit.
MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Ve
ctor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, FunctionWrap
pers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, 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}}
}, 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{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float64, Vector{Float64
}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{
ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.O
verrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Vector{Float64}, tru
e, ModelingToolkit.MTKParameters{Vector{Float64}, StaticArraysCore.SizedVec
tor{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciM
LBase.NonlinearFunction{true, SciMLBase.FullSpecialize, ModelingToolkit.Gen
eratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenera
tedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF
_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3
ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGeneratedFunctions.Runtime
GeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd
50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.Unif
ormScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, ModelingToolkit.ObservedFunctionCache{Mode
lingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.NonlinearSystem, Vec
tor{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}
, Nothing, Nothing}, typeof(ModelingToolkit.update_initializeprob!), Compos
edFunction{ComposedFunction{typeof(identity), typeof(ModelingToolkit.safe_f
loat)}, SymbolicIndexingInterface.TimeIndependentObservedFunction{ModelingT
oolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.Run
timeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3
d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctio
ns.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b1
9e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, Modeli
ngToolkit.var"#initprobpmap_split#810"{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", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0
xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:
ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTa
g", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868,
 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, 
Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetadata{ModelingToolkit
.ReconstructInitializeprob{ModelingToolkit.var"#_getter#806"{Tuple{Composed
Function{ModelingToolkit.PConstructorApplicator{typeof(identity)}, Modeling
Toolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 
3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
 :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1
e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79
c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticArraysCore.SizedVect
or{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Retur
ns{Tuple{}}}}, ComposedFunction{typeof(identity), SymbolicIndexingInterface
.TimeDependentObservedFunction{SymbolicIndexingInterface.ContinuousTimeseri
es, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t)
, ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x
e2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74)
, Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterfac
e.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{
(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_ar
g_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe
8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag"
, ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0
x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInterface.MultipleParam
etersGetter{SymbolicIndexingInterface.IndexerNotTimeseries, Vector{Symbolic
IndexingInterface.GetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStr
uctures.Initials, Int64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{S
ymbolicIndexingInterface.MultipleSetters{Vector{SymbolicIndexingInterface.P
arameterHookWrapper{SymbolicIndexingInterface.SetParameterIndex{ModelingToo
lkit.ParameterIndex{SciMLStructures.Initials, Int64}}, SymbolicUtils.BasicS
ymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}, ModelingToolkit.
MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Ve
ctor{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vector{Float64}, ADTyp
es.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}(Val{
Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciML
Base.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple
{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}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardD
iff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1
}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{Float64}, 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}}}, 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{}}, ForwardDiff.Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearA
lgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESystem}, Nothing,
 ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearL
eastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MTKParameters{Vec
tor{Float64}, StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Tu
ple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLB
ase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), 
RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkpa
rameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Noth
ing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_ar
g_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4
e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Mod
elingToolkit.ObservedFunctionCache{ModelingToolkit.NonlinearSystem}, Nothin
g, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{S
ymbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, typeof(Modeling
Toolkit.update_initializeprob!), ComposedFunction{ComposedFunction{typeof(i
dentity), typeof(ModelingToolkit.safe_float)}, SymbolicIndexingInterface.Ti
meIndependentObservedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 
2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1,
 :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.
var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x39202
0a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out,
 :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87
b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initprobpmap_split#81
0"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVe
ctor{0, Float64, Vector{Float64}}}, ComposedFunction{ModelingToolkit.PConst
ructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{false, 
ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunc
tions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76
, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGenerat
edFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparamete
rs___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag
", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}
}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit
.InitializationMetadata{ModelingToolkit.ReconstructInitializeprob{ModelingT
oolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingToolkit.PConstructo
rApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapper{true, Modeli
ngToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.
RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 
0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModT
ag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}
}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}}, Re
turns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{type
of(identity), SymbolicIndexingInterface.TimeDependentObservedFunction{Symbo
licIndexingInterface.ContinuousTimeseries, ModelingToolkit.GeneratedFunctio
nWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag",
 ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0x
c6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.RuntimeGenerated
Function{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.
var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b4
63, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolki
t.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObservedFunction{Mo
delingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFuncti
ons.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modeling
Toolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 
0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGenerated
Functions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters
___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag",
 (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, 
SymbolicIndexingInterface.MultipleParametersGetter{SymbolicIndexingInterfac
e.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.GetParameterIndex{
ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}}, Nothing}
}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterface.MultipleSet
ters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{SymbolicIndexing
Interface.SetParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.
Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Noth
ing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}}, Vector{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, Forwa
rdDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(1.1299270449116252,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(0.0011039094449194554,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.1906535339642711,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(33.90611583933047,-
599329.3016171986), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(-1.452044714580663,-15527.561522826976), Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}(-0.030105527299985297,0.0), Dual{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.0055007065575519015,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.00049957264
34977589,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(-1.7058319201623817e-9,-4445.191555294029), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(8.326672684688674e-17,-17.08973280927014), D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1.4836160078246
508e-11,-25872.46111178833), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(7.297273896256229e-12,-2195.290010778645), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-6.935221108506084e-8,384518.98
820857814)]), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArg
DerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunct
ion{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappe
rsWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Floa
t64}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.Sized
Vector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tup
le{}, Tuple{}}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}, Float64, 1}}, 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{Float64}, ModelingToolkit.MTKParam
eters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}}, Vector{Flo
at64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.F
unctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Modelin
gToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Floa
t64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, 
false}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.ODESy
stem}, Nothing, ModelingToolkit.ODESystem, SciMLBase.OverrideInitData{SciML
Base.NonlinearLeastSquaresProblem{Vector{Float64}, true, ModelingToolkit.MT
KParameters{Vector{Float64}, StaticArraysCore.SizedVector{0, Float64, Vecto
r{Float64}}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, SciMLBase.NonlinearFuncti
on{true, SciMLBase.FullSpecialize, ModelingToolkit.GeneratedFunctionWrapper
{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_a
rg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToo
lkit.var"#_RGF_ModTag", (0x855d74ab, 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0x
d16f567f), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ
₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag
", ModelingToolkit.var"#_RGF_ModTag", (0xc8a21f76, 0xd50266a8, 0x36ae5075, 
0x4ece6d0a, 0x4e546efd), Nothing}}, LinearAlgebra.UniformScaling{Bool}, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothin
g, Nothing, ModelingToolkit.ObservedFunctionCache{ModelingToolkit.Nonlinear
System}, Nothing, ModelingToolkit.NonlinearSystem, Vector{Float64}, Nothing
}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Nothing, Nothing}, 
typeof(ModelingToolkit.update_initializeprob!), ComposedFunction{ComposedFu
nction{typeof(identity), typeof(ModelingToolkit.safe_float)}, SymbolicIndex
ingInterface.TimeIndependentObservedFunction{ModelingToolkit.GeneratedFunct
ionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunction
{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", M
odelingToolkit.var"#_RGF_ModTag", (0x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x99
1a4cdf, 0x392020a7), Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_
RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2b19e578, 0x47f62e68, 0x
3f23a85d, 0xb87b692a, 0xb5777171), Nothing}}}}, ModelingToolkit.var"#initpr
obpmap_split#810"{ModelingToolkit.var"#_getter#806"{Tuple{Returns{StaticArr
aysCore.SizedVector{0, Float64, Vector{Float64}}}, ComposedFunction{Modelin
gToolkit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.Observed
Wrapper{false, ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparamet
ers___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTa
g", (0x383e1f76, 0x30e3ca66, 0xe27ee296, 0x7de466bf, 0xddedf6e9), Nothing},
 RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, 
:___mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xdef1fe73, 0x41a6768b, 0x43614868, 0x9db8eb5f, 0xb69f97
19), Nothing}}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}}, 
ModelingToolkit.InitializationMetadata{ModelingToolkit.ReconstructInitializ
eprob{ModelingToolkit.var"#_getter#806"{Tuple{ComposedFunction{ModelingTool
kit.PConstructorApplicator{typeof(identity)}, ModelingToolkit.ObservedWrapp
er{true, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___
, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0x7e79da91, 0xd20b440a, 0x8f31de5e, 0xb3bf1671, 0x1e4c890d), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit
.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f91
2348), Nothing}}}}, Returns{StaticArraysCore.SizedVector{0, Float64, Vector
{Float64}}}, Returns{Tuple{}}, Returns{Tuple{}}, Returns{Tuple{}}}}, Compos
edFunction{typeof(identity), SymbolicIndexingInterface.TimeDependentObserve
dFunction{SymbolicIndexingInterface.ContinuousTimeseries, ModelingToolkit.G
eneratedFunctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var
"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f,
 0xf9877c30, 0xc6a732b9, 0xb3aed46a), Nothing}, RuntimeGeneratedFunctions.R
untimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), M
odelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc0f
f0587, 0x8943b463, 0x759a7721, 0x55ab8be5, 0xe5da0c74), Nothing}}, true}}},
 ModelingToolkit.GetUpdatedU0{SymbolicIndexingInterface.TimeIndependentObse
rvedFunction{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), Runtime
GeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameter
s___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0x402c48b5, 0xfa2314b8, 0x4a877dea, 0xd8553b68, 0xe8202d4a), Nothing}, R
untimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :_
__mtkparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var
"#_RGF_ModTag", (0xefb5629c, 0x6f14cbd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6
), Nothing}}}, SymbolicIndexingInterface.MultipleParametersGetter{SymbolicI
ndexingInterface.IndexerNotTimeseries, Vector{SymbolicIndexingInterface.Get
ParameterIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int
64}}}, Nothing}}, ModelingToolkit.SetInitialUnknowns{SymbolicIndexingInterf
ace.MultipleSetters{Vector{SymbolicIndexingInterface.ParameterHookWrapper{S
ymbolicIndexingInterface.SetParameterIndex{ModelingToolkit.ParameterIndex{S
ciMLStructures.Initials, Int64}}, SymbolicUtils.BasicSymbolic{Real}}}}}}, V
al{true}}, Nothing}, Vector{Float64}, ModelingToolkit.MTKParameters{StaticA
rraysCore.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.Ordinary
DiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeG
radientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.Fun
ctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, ModelingToolk
it.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Vector{Float64}},
 Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}, Float64}}, 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{}}, Float
64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Ve
ctor{Float64}, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0
, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tu
ple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector
{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 1}}, ModelingToolkit.MTKParameters{StaticArraysC
ore.SizedVector{0, Float64, Vector{Float64}}, Vector{Float64}, Tuple{}, Tup
le{}, Tuple{}, Tuple{}}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.Diagonal{Float
64, Vector{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Obse
rvedFunctionCache{ModelingToolkit.ODESystem}, Nothing, ModelingToolkit.ODES
ystem, SciMLBase.OverrideInitData{SciMLBase.NonlinearLeastSquaresProblem{Ve
ctor{Float64}, true, ModelingToolkit.MTKParameters{Vector{Float64}, StaticA
rraysCore.SizedVector{0, Float64, Vector{Float64}}, Tuple{}, Tuple{}, Tuple
{}, Tuple{}}, SciMLBase.NonlinearFunction{true, SciMLBase.FullSpecialize, M
odelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunct
ions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___), Modelin
gToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x855d74ab,
 0xd2df28ae, 0xeb3ecdd0, 0x325306af, 0xd16f567f), Nothing}, RuntimeGenerate
dFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameter
s___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag"
, (0xc8a21f76, 0xd50266a8, 0x36ae5075, 0x4ece6d0a, 0x4e546efd), Nothing}}, 
LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, ModelingToolkit.Observed
FunctionCache{ModelingToolkit.NonlinearSystem}, Nothing, ModelingToolkit.No
nlinearSystem, Vector{Float64}, Nothing}, Base.Pairs{Symbol, Union{}, Tuple
{}, @NamedTuple{}}, Nothing, Nothing}, typeof(ModelingToolkit.update_initia
lizeprob!), ComposedFunction{ComposedFunction{typeof(identity), typeof(Mode
lingToolkit.safe_float)}, SymbolicIndexingInterface.TimeIndependentObserved
Function{ModelingToolkit.GeneratedFunctionWrapper{(2, 2, true), RuntimeGene
ratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtkparameters___
), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0
x336b2cdb, 0x5c3e3d71, 0x5560ce01, 0x991a4cdf, 0x392020a7), Nothing}, Runti
meGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mt
kparameters___), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_R
GF_ModTag", (0x2b19e578, 0x47f62e68, 0x3f23a85d, 0xb87b692a, 0xb5777171), N
othing}}}}, ModelingToolkit.var"#initprobpmap_split#810"{ModelingToolkit.va
r"#_getter#806"{Tuple{Returns{StaticArraysCore.SizedVector{0, Float64, Vect
or{Float64}}}, ComposedFunction{ModelingToolkit.PConstructorApplicator{type
of(identity)}, ModelingToolkit.ObservedWrapper{false, ModelingToolkit.Gener
atedFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGenerate
dFunction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x383e1f76, 0x30e3ca66, 0xe27ee
296, 0x7de466bf, 0xddedf6e9), Nothing}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolk
it.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdef1fe73, 0x41a
6768b, 0x43614868, 0x9db8eb5f, 0xb69f9719), Nothing}}}}, Returns{Tuple{}}, 
Returns{Tuple{}}, Returns{Tuple{}}}}}, ModelingToolkit.InitializationMetada
ta{ModelingToolkit.ReconstructInitializeprob{ModelingToolkit.var"#_getter#8
06"{Tuple{ComposedFunction{ModelingToolkit.PConstructorApplicator{typeof(id
entity)}, ModelingToolkit.ObservedWrapper{true, ModelingToolkit.GeneratedFu
nctionWrapper{(2, 3, true), RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:__mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x7e79da91, 0xd20b440a, 0x8f31de5
e, 0xb3bf1671, 0x1e4c890d), Nothing}, RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___, :t), ModelingToo
lkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdc0e8bfb, 0xe
657b82a, 0x2b04a79c, 0xdd2049fc, 0x2f912348), Nothing}}}}, Returns{StaticAr
raysCore.SizedVector{0, Float64, Vector{Float64}}}, Returns{Tuple{}}, Retur
ns{Tuple{}}, Returns{Tuple{}}}}, ComposedFunction{typeof(identity), Symboli
cIndexingInterface.TimeDependentObservedFunction{SymbolicIndexingInterface.
ContinuousTimeseries, ModelingToolkit.GeneratedFunctionWrapper{(2, 3, true)
, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:__mtk_arg_1, :___mtk
parameters___, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xe2dbe4c4, 0x8637425f, 0xf9877c30, 0xc6a732b9, 0xb3aed46a)
, Nothing}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :__
mtk_arg_1, :___mtkparameters___, :t), ModelingToolkit.var"#_RGF_ModTag", Mo
delingToolkit.var"#_RGF_ModTag", (0xc0ff0587, 0x8943b463, 0x759a7721, 0x55a
b8be5, 0xe5da0c74), Nothing}}, true}}}, ModelingToolkit.GetUpdatedU0{Symbol
icIndexingInterface.TimeIndependentObservedFunction{ModelingToolkit.Generat
edFunctionWrapper{(2, 2, true), RuntimeGeneratedFunctions.RuntimeGeneratedF
unction{(:__mtk_arg_1, :___mtkparameters___), ModelingToolkit.var"#_RGF_Mod
Tag", ModelingToolkit.var"#_RGF_ModTag", (0x402c48b5, 0xfa2314b8, 0x4a877de
a, 0xd8553b68, 0xe8202d4a), Nothing}, RuntimeGeneratedFunctions.RuntimeGene
ratedFunction{(:ˍ₋out, :__mtk_arg_1, :___mtkparameters___), ModelingToolkit
.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xefb5629c, 0x6f14c
bd6, 0xfff3a505, 0x6fdc0cc0, 0x6dc034e6), Nothing}}}, SymbolicIndexingInter
face.MultipleParametersGetter{SymbolicIndexingInterface.IndexerNotTimeserie
s, Vector{SymbolicIndexingInterface.GetParameterIndex{ModelingToolkit.Param
eterIndex{SciMLStructures.Initials, Int64}}}, Nothing}}, ModelingToolkit.Se
tInitialUnknowns{SymbolicIndexingInterface.MultipleSetters{Vector{SymbolicI
ndexingInterface.ParameterHookWrapper{SymbolicIndexingInterface.SetParamete
rIndex{ModelingToolkit.ParameterIndex{SciMLStructures.Initials, Int64}}, Sy
mbolicUtils.BasicSymbolic{Real}}}}}}, Val{true}}, Nothing}, Vector{Float64}
, ModelingToolkit.MTKParameters{StaticArraysCore.SizedVector{0, Float64, Ve
ctor{Float64}}, Vector{Float64}, Tuple{}, Tuple{}, Tuple{}, Tuple{}}}, Vect
or{Float64}, ADTypes.AutoForwardDiff{1, ForwardDiff.Tag{DiffEqBase.Ordinary
DiffEqTag, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeConf
ig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDi
ff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}
}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1
.1299270449116252,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}}(0.0011039094449194554,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(0.1906535339642711,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(33.90611583933047,-599329.3016171986), D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.452044714580
663,-15527.561522826976), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}(-0.030105527299985297,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(-0.0055007065575519015,0.0), Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0004995726434977589,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.7058319201623817e
-9,-4445.191555294029), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}}(8.326672684688674e-17,-17.08973280927014), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(1.4836160078246508e-11,-25872.461111
78833), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(7.2972
73896256229e-12,-2195.290010778645), Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}(-6.935221108506084e-8,384518.98820857814)]), ())), 1
.0e-5, OrdinaryDiffEqRosenbrock.Rodas5P{1, ADTypes.AutoForwardDiff{1, Forwa
rdDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Nothing, typeof(Ordinar
yDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, nothing, typeof(Ordinary
DiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}(
nothing, OrdinaryDiffEqCore.DEFAULT_PRECS, OrdinaryDiffEqCore.trivial_limit
er!, OrdinaryDiffEqCore.trivial_limiter!, ADTypes.AutoForwardDiff(chunksize
=1, tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}())), Ordinar
yDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_limiter!, 3), Bool
[1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], false), true, 0, SciMLBase.DEStats
(82114, 0, 3929, 31432, 3620, 0, 0, 0, 0, 0, 3620, 309, 0.0), nothing, SciM
LBase.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".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothi
ng, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciMLBas
e.StandardODEProblem}, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForw
ardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, N
othing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true, no
thing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCo
re.trivial_limiter!)}, OrdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFu
nction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".
slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof
(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{V
ector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, Nothing,
 OrdinaryDiffEqRosenbrock.RosenbrockCache{Vector{Float64}, Vector{Float64},
 Float64, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq
Rosenbrock.RodasTableau{Float64, Float64}, SciMLBase.TimeGradientWrapper{tr
ue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"#
#WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing,
 Nothing}, Vector{Float64}, SciMLBase.NullParameters}, SciMLBase.UJacobianW
rapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(M
ain.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing,
 Nothing, Nothing}, Float64, SciMLBase.NullParameters}, LinearSolve.LinearC
ache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParam
eters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinearSolverInit
{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.Q
RCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Fl
oat64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Mat
rix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, Li
nearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, Linear
Algebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64,
 Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{
Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Floa
t64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float6
4, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Noth
ing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPr
econditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgeb
ra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.LinearVerbosity
{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLog
ging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent,
 SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAd
joint{Missing}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTw
oArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual
{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vect
or{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 9}}}}, Tuple{}}, DifferentiationInterfaceForwardDiffExt.ForwardDi
ffTwoArgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{Di
ffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, 
Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Float64, 9}}}}, Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffEx
t.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true,
 SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##We
aveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, No
thing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, ADType
s.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Fl
oat64}}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}
, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tu
ple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBa
se.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), M
atrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_O
BSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.N
ullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDi
ff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64,
 ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock
.Rodas5P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS
), Val{:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limite
r!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCor
e.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!)}, Ordinary
DiffEqCore.DifferentialVarsUndefined}, SciMLBase.DEStats, Nothing, Nothing,
 Nothing, Nothing}([[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.6932
7969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463434
311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095266
985, -6.339193797155536e-7], [0.00015000000000000096, -7.499576682940676e-5
, 0.4500169304662131, 4.448961052636021e-7, 4.63434311592467e-9, 1.03339823
79911499e-5, 1.6932794315479788e-5, 150.0, -74.99576640815987, -0.005064884
50368873, 0.444896105824963, 0.004634343127775004, -6.054169584992515e-6, -
2.47977849610951e-6, 0.06633307975256669, 382.4589986509165, -0.02694417633
375928], [0.00030346004349877573, -0.0001517214564432677, 0.450016922635282
8, 9.000546114972841e-7, 9.375586460700212e-9, 1.0333973952809054e-5, 1.693
2791887546723e-5, 150.0, -74.99576445216772, -0.010243850561905663, 0.44489
61085180174, 0.004634343182686087, -1.0419742862265787e-5, -2.2670489653288
746e-6, 0.1341963690599594, 382.459172880821, -0.05450987701921593], [0.000
5015101859710008, -0.00025074093262395197, 0.45001690469755357, 1.487466199
7899658e-6, 1.549446872075291e-8, 1.0333956477602698e-5, 1.693278907269476e
-5, 150.0, -74.9957599696659, -0.01692764725306674, 0.4448961147590913, 0.0
046343433081191395, -1.605031743433838e-5, -1.998148870487642e-6, 0.2217784
4269185154, 382.45958222640934, -0.09008523290046067], [0.00074039733206012
13, -0.00037017774685971374, 0.45001687131923174, 2.1959992962262974e-6, 2.
2875035873089427e-8, 1.0333925513299973e-5, 1.6932786140135973e-5, 150.0, -
74.99575162696239, -0.024989623539144558, 0.4448961264376182, 0.00463434354
0181322, -2.2833542079900397e-5, -1.687687855988195e-6, 0.3274197692616649,
 382.4603533091788, -0.13299613415557263], [0.001026076084043756, -0.000513
0090189330409, 0.45001681454498926, 3.0433151152644683e-6, 3.17012594179958
3e-8, 1.0333874314727199e-5, 1.6932783257358433e-5, 150.0, -74.995737435056
38, -0.034630751562149904, 0.44489614637379493, 0.004634343930813733, -3.09
2795000110172e-5, -1.3458597346916303e-6, 0.45375394666783836, 382.46167163
45697, -0.18431229207526867], [0.0013588073446756405, -0.000679365170391077
7, 0.4500167252725207, 4.030187519386913e-6, 4.198120071422105e-8, 1.033379
5282905683e-5, 1.6932780664311376e-5, 150.0, -74.99571511819076, -0.0458598
6399317161, 0.44489617781645624, 0.004634344534596813, -4.032266036809754e-
5, -1.0035719088735577e-6, 0.6008968994900165, 382.46374749559607, -0.24408
073976409575], [0.001740586686285242, -0.0008702438947217648, 0.45001659215
344697, 5.162535375758511e-6, 5.377651515804742e-8, 1.0333678994036453e-5, 
1.6932778510456533e-5, 150.0, -74.99568183924133, -0.05874435208168425, 0.4
448962248481436, 0.0046343454111998795, -5.104499706866777e-5, -7.085018401
089483e-7, 0.7697320071785777, 382.46683774260936, -0.3126602060042485], [0
.0021723943418506444, -0.0010861352258557267, 0.45001640206928745, 6.443266
107952237e-6, 6.711748901974743e-8, 1.0333514702596691e-5, 1.69327767659110
32e-5, 150.0, -74.9956343188636, -0.07331736380253197, 0.44489629225066823,
 0.004634346613801736, -6.307870192179609e-5, -5.350298871481906e-7, 0.9606
941001032608, 382.4712301132461, -0.39022716644614525], [0.0026528194528358
338, -0.0013263336978551104, 0.4500161412806057, 7.868195255525723e-6, 8.19
605347001388e-8, 1.0333291418107752e-5, 1.6932775041336885e-5, 150.0, -74.9
9556912303368, -0.0895313780009222, 0.4448963851425868, 0.00463434817026643
2, -7.632275342330097e-5, -5.89627232483452e-7, 1.173161085869231, 382.4772
095984531, -0.4765287336688831]  …  [14.984326033266097, -0.337433846609929
03, 0.17066384816348634, 0.0001925670949836511, 2.4336366748648265e-5, -5.3
86650914862699e-6, -8.467722006862385e-6, 150.0, 59.566762549226176, -8.980
837245398131, -0.03360403817608118, -0.005563232710122797, 0.00062019571077
76033, 0.0007847214162413029, -64.3334282966124, -165.32058470424687, -18.4
6243029179165], [14.986242913520385, -0.33667208827259476, 0.17054925886423
62, 0.00019214049594764538, 2.4265333699461173e-5, -5.37872618426043e-6, -8
.45744788765731e-6, 150.0, 59.651651351019304, -8.952884000168048, -0.03316
1123042279625, -0.005553664394563368, 0.0006187827878562012, 0.000824604808
3912312, -64.11932271845029, -165.20267763443766, -18.429634461922937], [14
.988159793774674, -0.33590924668289884, 0.1704350266525003, 0.0001917195357
8593913, 2.4194425374568393e-5, -5.370866167627896e-6, -8.4466161108339e-6,
 150.0, 59.73629571530283, -8.924951958631235, -0.032721450745209886, -0.00
5543765503541297, 0.0006102586533010521, 0.0008715776087878277, -63.8985363
1157582, -165.06903288699928, -18.397226052246108], [14.990076674028963, -0
.335145324984915, 0.17032115123861555, 0.00019130417643464318, 2.4123643805
991987e-5, -5.36315357428237e-6, -8.435153747933248e-6, 150.0, 59.820692327
79677, -8.89704416909985, -0.03228446840503514, -0.005533891760450871, 0.00
05959637126418777, 0.0009227585268194381, -63.669373345660134, -164.9153225
2116804, -18.365385794203267], [14.991993554283251, -0.3343803263693563, 0.
1702076322898355, 0.00019089438770765417, 2.4052986060156764e-5, -5.3556518
54823914e-6, -8.423028619337347e-6, 150.0, 59.90483725465455, -8.8691642808
20632, -0.0318495058514582, -0.0055244594691963465, 0.0005775504071488962, 
0.0009746939898262994, -63.43079660007186, -164.73881903247056, -18.3342208
1502363], [14.99391043453754, -0.3336142540794395, 0.17009446942447687, 0.0
001904901484001149, 2.3982443669257198e-5, -5.348402072541752e-6, -8.410254
888150922e-6, 150.0, 59.98872627013555, -8.841316251619563, -0.031415838705
2948, -0.00551591268323262, 0.0005568456165567288, 0.0010236335221000734, -
63.18251239979738, -164.53862777507547, -18.303756006441112], [14.995827314
791828, -0.33284711141237733, 0.1699816622100011, 0.00019009144655123672, 2
.3912002501702476e-5, -5.341421629614125e-6, -8.396894943775581e-6, 150.0, 
60.072355208663296, -8.813504028623818, -0.030982755958024723, -0.005508687
788191032, 0.000535699957151365, 0.0010658310890655338, -62.92499497022988,
 -164.31577070001006, -18.273932117492073], [14.997744195046117, -0.3320789
0171636645, 0.16986921016521084, 0.00018969827884406077, 2.3841643086386884
e-5, -5.334704937855167e-6, -8.38305739836016e-6, 150.0, 60.155720312579604
, -8.785731227978577, -0.030549626541498693, -0.005503178379737096, 0.00051
58362335030889, 0.0010978479544057754, -62.659448342611896, -164.0731144146
7883, -18.244610681603135], [14.999661075300406, -0.3313096283833128, 0.169
75711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.328225965
594457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.758000839578
706, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409, 0.
001116832441838903, -62.38770921173346, -163.8151483533587, -18.21558533772
592], [14.999999999998904, -0.3311735023248599, 0.1697373296153814, 0.00018
924268895326456, 2.3758915247975978e-5, -5.327102156215073e-6, -8.366365693
649003e-6, 150.0, 60.253483257566366, -8.753102401475758, -0.03003920050788
1367, -0.00549931871516871, 0.0004960535857023572, 0.001118665317438119, -6
2.339113356546875, -163.76819159511533, -18.21047117266844]], nothing, noth
ing, [0.0, 1.0e-6, 2.023066956658499e-6, 3.3434012398066557e-6, 4.935982213
734114e-6, 6.8405072269583345e-6, 9.05871563117088e-6, 1.1603911241901547e-
5, 1.448262894567087e-5, 1.768546301890546e-5  …  0.09989550688844792, 0.09
990828609014318, 0.09992106529183845, 0.09993384449353371, 0.09994662369522
897, 0.09995940289692423, 0.0999721820986195, 0.09998496130031476, 0.099997
74050201002, 0.1], [[[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.693
27969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.0046343
4311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.4589509526
6985, -6.339193797155536e-7]], [[-2.68644888130459e-19, -2.1028710514110055
e-13, 2.531097504465909e-9, -2.636037520298232e-16, -5.925709186045359e-18,
 2.134177734153846e-12, -1.0486643257935952e-13, 6.895679674685942e-22, -6.
32879179739638e-7, 1.9224276157283732e-10, -8.932668185548306e-10, -1.77717
20558451595e-11, -2.041478699358192e-10, 2.2544327438234717e-10, 0.00038801
83473319511, -5.8355519560835916e-5, 1.0630243690469483e-5], [1.71591578347
05832e-17, -2.1097779974468737e-13, 4.1581944011738246e-17, -2.976681678458
063e-16, -5.913949878934952e-18, -5.369751010934185e-17, 4.9885191137136424
e-17, 1.9036602802577233e-20, 2.488417235150416e-13, 2.6468931333899795e-10
, -5.2561424676197376e-14, 2.142152814742128e-14, -1.7168587934934325e-10, 
2.979133158640281e-10, -0.0013042580268240937, -1.2023406134695895e-5, -3.5
72636056478128e-5], [-7.449142247232344e-18, 1.2686687789430311e-17, 6.6561
2852086963e-17, -5.404560358243648e-20, -1.017494822822154e-20, -4.29580661
1458912e-17, 7.486190902461984e-17, -4.924661074765362e-20, -5.214496319572
234e-13, -4.420906625491374e-14, 9.669513300308266e-14, -5.3333286505331213
e-14, 1.3953026614421939e-14, -4.4446853140907365e-14, 0.001110092209618081
, 3.1688582012236744e-5, 3.0410841831175233e-5]], [[-1.6679374775645461e-19
, -8.876066448745893e-13, 2.649214320774772e-9, -1.2181239638309662e-15, -2
.4927501148549436e-17, 2.23328158235076e-12, -1.0904629387719927e-13, -8.37
9597200400739e-21, -6.624121975148487e-7, 1.038460273452668e-9, -9.35165374
184182e-10, -1.85468056242561e-11, -7.567997405792764e-10, 1.17833304059312
62e-9, 4.918635154529407e-9, -3.832826274161515e-5, 8.217641473217934e-9], 
[2.8286636225955885e-17, -2.2591234724324318e-13, 3.2951150329457914e-16, -
3.1879020436629335e-16, -6.36139971893541e-18, -2.4235315221372914e-16, 3.7
417699677472744e-16, -5.109026668916804e-20, -3.971250033686333e-13, 2.8328
362493135145e-10, 5.796710221579225e-14, -5.5580835099068645e-14, -1.837757
3325179876e-10, 3.188602743167965e-10, -1.053059472209983e-7, -8.8931064175
85768e-5, -6.074575688731229e-9], [-1.3545735095508755e-17, 8.5889161469825
23e-18, 7.28717408010273e-17, -1.1660964911883392e-19, 4.306816162026504e-2
0, -4.705976975802095e-17, 8.197304146935367e-17, 1.6536642574352758e-19, 2
.050792031208546e-12, -6.860910717367249e-14, -3.948738045256091e-13, 1.919
7579997479003e-13, 3.4576347247967745e-14, -6.915596401597236e-14, 3.627908
178359992e-8, 9.815084338608153e-5, 7.290426131836957e-9]], [[8.90921409513
7833e-20, -2.716416938071741e-12, 4.412422167773359e-9, -3.777153942481036e
-15, -7.607030967859443e-17, 3.717662607449115e-12, -1.7841028485975655e-13
, -1.6345870969315688e-21, -1.1032819138364779e-6, 3.281083291381012e-9, -1
.5584459749261267e-9, -3.067695054257877e-11, -2.267145334014816e-9, 3.7090
264601121193e-9, -1.569919315800795e-7, -7.776191753871322e-5, 1.7920592948
080683e-8], [1.9306313079746878e-17, -4.855808626845723e-13, 1.375861418293
8147e-15, -6.856144158814481e-16, -1.358640993383467e-17, -9.54254973583770
4e-16, 1.5557885617244117e-15, -4.660509122356508e-20, 1.005465208559602e-1
2, 6.081977708001492e-10, -2.597526810116501e-13, 2.2579071940165973e-14, -
3.9466541117537916e-10, 6.846685469856837e-10, 2.7489537209267965e-7, -0.00
010081882728926393, 8.326169232812192e-9], [-5.45342101619746e-19, 6.290183
0520281235e-18, 2.0183848492285753e-16, -3.3947852254725966e-19, 1.21906884
67283253e-19, -1.3035423374957462e-16, 2.2708300740184133e-16, 1.4810453234
419243e-19, 3.2257168147697003e-12, -3.3815208045986643e-13, -6.24897067918
3017e-13, 2.9732443314248617e-13, 1.6872503220949348e-13, -3.38465775101212
7e-13, -3.238238658212258e-7, 0.00012325354584293987, -3.7022805512392033e-
9]], [[-6.41139666954011e-19, -6.217157962554681e-12, 6.419672863015317e-9,
 -8.696760253416632e-15, -1.7317481431897158e-16, 5.402872510339046e-12, -2
.496546209769021e-13, 8.967836873052249e-21, -1.6051602774535172e-6, 7.6064
24339454942e-9, -2.2701714951664266e-9, -4.392104543986514e-11, -5.13733444
8355259e-9, 8.585753152226208e-9, -3.00572073800894e-7, -0.0001077110097701
5242, 4.183911308612285e-8], [2.790014621266635e-17, -8.521419223877949e-13
, 3.894171917825173e-15, -1.204820489920747e-15, -2.3387267147834448e-17, -
2.6353082437037084e-15, 4.396239759933859e-15, 5.468823523370809e-20, 5.275
715453407094e-12, 1.064586566936346e-9, -1.1913036912788336e-12, 2.96255056
0890637e-13, -6.912322945271892e-10, 1.1987845351993837e-9, 4.9095371487099
92e-7, -0.00016342964157084158, 1.8749907787600612e-8], [-6.503118015759026
e-18, 1.5794087552590876e-17, 4.2590682742884226e-16, -6.0488044067937385e-
19, 1.6345250240626014e-19, -2.752666050024651e-16, 4.79348524777757e-16, -
8.882663577337898e-20, 1.2325655890697214e-12, -1.0998009808038487e-12, -2.
5394371167231224e-13, 9.50619665806073e-14, 5.476382294515311e-13, -1.10010
08696764637e-12, -5.16329593518248e-7, 0.00019365802925696735, -9.826342504
051446e-9]], [[-9.218593118416116e-19, -1.2785773065742038e-11, 9.180879458
22004e-9, -1.7951193161147498e-14, -3.5274778860666507e-16, 7.7115206820336
72e-12, -3.31465315437919e-13, 2.3374090645574878e-23, -2.295529114813181e-
6, 1.573023783532498e-8, -3.253623589517809e-9, -6.103416665912717e-11, -1.
0499516022424692e-8, 1.7744130052135492e-8, -4.0889023914145056e-7, -0.0001
519896445386073, 9.011873806746463e-8], [4.012975015230849e-17, -1.45732884
12061883e-12, 9.6940510031957e-15, -2.0645922802735847e-15, -3.896704423284
6597e-17, -6.4785192136725226e-15, 1.0936143458747589e-14, 1.02408295840770
05e-19, 1.3434907722477084e-11, 1.8121994074365028e-9, -3.0128816664706924e
-12, 7.665860911939687e-13, -1.1779395653092514e-9, 2.0417065488196287e-9, 
2.992382642136383e-7, -0.00023683070277724666, 2.4907409253311606e-8], [-1.
1677262151508365e-17, 2.395403201633611e-17, 8.662895219290244e-16, -1.9208
326172752004e-18, 5.038575053241168e-19, -5.606006537041377e-16, 9.75553433
9980778e-16, -9.838608636843079e-20, 3.134214944228992e-12, -3.188597025503
8583e-12, -6.362328532997607e-13, 2.532058434861518e-13, 1.5858436478782219
e-12, -3.1880261427980117e-12, -4.555351272089849e-7, 0.0002797734882363638
6, -1.4245631222729711e-8]], [[-6.312477917705783e-19, -2.3600522411495212e
-11, 1.2454244508481196e-8, -3.3234356960055793e-14, -6.408661966024721e-16
, 1.0427182861860546e-11, -3.923488349883611e-13, -2.6947062347972443e-20, 
-3.113897167929569e-6, 2.908266046805171e-8, -4.429492198120565e-9, -7.8742
79190133463e-11, -1.928209353521366e-8, 3.27998561987377e-8, -8.01294901629
0241e-7, -0.00019955670433057586, 1.620192606820233e-7], [3.311454967702135
5e-17, -2.3024611181992188e-12, 2.0971710294220385e-14, -3.2734060895833876
e-15, -5.869231736652197e-17, -1.391584528021881e-14, 2.3653185482313918e-1
4, -1.8538033480431378e-19, 2.8254004938032305e-11, 2.84090873968618e-9, -6
.3493240699422334e-12, 1.5810614840455905e-12, -1.8500048548075993e-9, 3.20
35151390080954e-9, 7.430550338280591e-7, -0.0003351540432669211, 5.90250282
83509216e-8], [1.2141136654862322e-18, 3.163151770007981e-17, 1.57986256402
55855e-15, -4.2299356550814756e-18, 1.1255249595345094e-18, -1.024517793892
278e-15, 1.7809562748429898e-15, 5.339907917719559e-19, 4.979705991781144e-
12, -7.89047577360474e-12, -1.0194583951417038e-12, 3.9133574440957934e-13,
 3.9212202204494915e-12, -7.886669379908396e-12, -9.675368553158148e-7, 0.0
003916685785537162, -4.3731241893152035e-8]], [[-4.063173680172119e-19, -4.
06117415947143e-11, 1.639674917001976e-8, -5.736232108439756e-14, -1.075753
4789019004e-15, 1.3659811139894144e-11, -4.0042973340101123e-13, -4.6762263
09791659e-20, -4.099461536459453e-6, 4.9976453786664213e-8, -5.863500570254
9525e-9, -9.555206975123522e-11, -3.3009860165561686e-8, 5.6372874135294724
e-8, -1.3352815468897515e-6, -0.00025461246314322845, 2.742645973698752e-7]
, [5.494075829806505e-17, -3.4780000655935953e-12, 4.149200008071875e-14, -
4.971435399607585e-15, -8.182256419392239e-17, -2.7420891907609556e-14, 4.6
802539416214724e-14, -2.1373109018966815e-19, 5.848681609715172e-11, 4.2394
73949334734e-9, -1.3037004456145713e-11, 3.3743667595912344e-12, -2.7687639
93790751e-9, 4.787221912945002e-9, 1.1801090614182184e-6, -0.00045167140124
373535, 1.0963174632939791e-7], [-1.8445901292823254e-17, 2.793403495627838
e-17, 2.7008293566814983e-15, -8.712979682464227e-18, 2.2083663725596058e-1
8, -1.7571445774277823e-15, 3.0493714338953492e-15, 5.275266495249173e-19, 
2.4170981405058734e-12, -1.768523606035792e-11, -5.778760700462253e-13, 8.6
50694643264627e-14, 8.784677570440368e-12, -1.7672920992529123e-11, -1.4943
502222061313e-6, 0.0005251022811207411, -8.93614797660582e-8]], [[-1.108185
4131874582e-18, -6.588291488049572e-11, 2.0975753247767066e-8, -9.338331916
137253e-14, -1.6810757274085056e-15, 1.7347303503142017e-11, -2.95028306230
68256e-13, -3.198111202380468e-20, -5.243974806203276e-6, 8.073276177897539
e-8, -7.560344020546902e-9, -1.0707785956833474e-10, -5.322820802408817e-8,
 9.110934912770904e-8, -2.0395664575446834e-6, -0.0003125398689663399, 4.37
510508297045e-7], [4.635722455124379e-17, -5.032024933118211e-12, 7.6016508
58099943e-14, -7.24800404805605e-15, -1.04421646279849e-16, -5.013620556065
303e-14, 8.578347027586598e-14, -4.57355437474102e-19, 1.0511872728537173e-
10, 6.023431035584239e-9, -2.3468693703564796e-11, 5.984786805694499e-12, -
3.951092411364361e-9, 6.8159337440827064e-9, 1.5441172331018567e-6, -0.0005
90738102662893, 1.821062831447863e-7], [-5.014951129436326e-18, 8.008980360
468643e-17, 4.330990785675039e-15, -1.8199428332030012e-17, 4.6459291175043
15e-18, -2.8313569116193075e-15, 4.9013738278691584e-15, 1.6892369581641812
e-18, 6.732060555103941e-12, -3.6295737405619447e-11, -1.4706876109639348e-
12, 4.1063320041538605e-13, 1.802580443736974e-11, -3.626933851278851e-11, 
-2.102705846409174e-6, 0.0006836981791799891, -1.609987011831582e-7]], [[-6
.042320653859769e-19, -1.0094091593684618e-10, 2.5965330879497233e-8, -1.43
697482799756e-13, -2.438481262827989e-15, 2.1253874513392902e-11, 1.0965481
959249376e-14, 7.708298416972134e-20, -6.490834952930478e-6, 1.227916443666
5567e-7, -9.461210571829304e-9, -1.0643434622349348e-10, -8.093738041888951
e-8, 1.3868988964504084e-7, -3.1663431789963676e-6, -0.00036520761125543894
, 6.4858597218151e-7], [7.990781996831157e-17, -6.929759212642766e-12, 1.28
93820490162184e-13, -1.0088367516375508e-14, -1.168108420197975e-16, -8.500
3880912282e-14, 1.4562003983941617e-13, 5.249023265385382e-19, 1.7681512635
94142e-10, 8.081720145201641e-9, -3.9481432987294443e-11, 1.000084960702549
e-11, -5.335214093920275e-9, 9.17313190959538e-9, 2.6262067367649104e-6, -0
.00075007945674208, 3.060595222997916e-7], [-4.110839550879798e-17, 1.41247
44793963772e-16, 6.447661362456701e-15, -3.412938753318921e-17, 8.726941019
834708e-18, -4.2447130054553484e-15, 7.321606188854658e-15, -1.503007406695
4777e-18, 1.1673381371926885e-11, -6.797991770479529e-11, -2.50161129437809
67e-12, 7.67207774615985e-13, 3.376065501556329e-11, -6.793387539456807e-11
, -3.3975338053311473e-6, 0.0008637806125323104, -2.850869834160566e-7]]  …
  [[2.9336486037837262e-19, -5.442087522399419e-7, -1.7875084111898742e-7, 
-2.857212372395194e-9, -5.6569673137703235e-11, -5.113336940405205e-11, -1.
8566042620065172e-10, -9.203301077663326e-19, 0.00012047089714802024, 9.011
365856829189e-6, 1.8888024875944097e-6, -3.619388690750961e-7, 4.1946313996
85197e-6, -5.045210499000781e-6, -0.00015918550756900243, -1.69489270827203
4e-5, -0.00014725820905094205], [3.1116230413083403e-16, 5.128336225328267e
-10, 3.8077623029858716e-11, 8.096728197707873e-12, -1.5805042990283118e-12
, 1.7983631513469197e-11, -2.178245700536632e-11, 3.0103193081652624e-16, 1
.7306437174582272e-7, 1.5540196992437566e-7, -1.9716088010834108e-8, 2.1943
375380179976e-8, -4.679290320405091e-8, 1.4600052829562966e-7, -0.004947832
738611011, -0.011957223954568549, 0.000521865017958786], [-1.52913570297774
5e-16, 7.563361401827061e-13, 6.828264142689799e-13, -1.0198441888859811e-1
3, 9.013850275306016e-14, -2.3744532253376937e-13, 6.434421326498872e-13, -
8.871233378578831e-16, 4.8786094097510235e-8, 4.4721263734792686e-8, -9.341
945248841233e-9, 4.807561478617081e-9, -2.2254387907711105e-8, 4.2487401968
49164e-8, 0.004949409406797013, 0.01191860981389142, -0.0005197328296080237
]], [[2.933648444973088e-19, -5.426643690946212e-7, -1.786312873472583e-7, 
-2.833748451344581e-9, -6.062223803105835e-11, 8.69491681668701e-13, -2.459
9285201209127e-10, -1.9003647650813345e-16, 0.00012132628377865647, 9.78631
2750445978e-6, 1.7653065875301784e-6, -2.6298868958516986e-7, 3.90077936174
6304e-6, -4.314734991844327e-6, -0.0013900034665488149, -0.0030866690877980
2, -1.1764621097236174e-5], [3.1116230390553975e-16, 5.162930113516942e-10,
 4.1206789634253996e-11, 7.605854417600477e-12, -1.1771519552901084e-12, 1.
6817842360238932e-11, -1.883373507765518e-11, -2.1687246325636648e-16, 3.64
86961229810624e-7, 3.316535855831502e-7, -5.642183049468753e-8, 4.083455987
37095e-8, -1.3432980045339517e-7, 3.127126645847042e-7, -0.0049225153292294
46, -0.011900949905994702, 0.0005133559781313052], [-1.5291356945388715e-16
, 1.3419762486524381e-12, 1.2243965768897096e-12, -2.139392567965675e-13, 1
.4781253444410076e-13, -5.07199120790887e-13, 1.156121081859829e-12, 4.1930
78781727509e-16, 4.1551339234764523e-8, 3.898285231780191e-8, -7.9307483663
32455e-9, 4.09691399950161e-9, -1.9615399961049953e-8, 3.717009895952939e-8
, 0.004987353550195709, 0.012001941639603896, -0.0005170093543069789]], [[2
.933648603513183e-19, -5.411056138886046e-7, -1.7849864530568072e-7, -2.812
5203477708353e-9, -6.307139175185835e-11, 4.752860375656126e-11, -2.9397489
632555994e-10, -2.297174689433087e-16, 0.00012270434902258092, 1.1046424556
444151e-5, 1.5419703372381354e-6, -1.1256209779254121e-7, 3.364491660694715
e-6, -3.124764032115465e-6, -0.0024129443329487387, -0.005679115030157327, 
0.00010123827732831481], [3.111623041317193e-16, 5.220215584873869e-10, 4.6
43937225102078e-11, 6.681433532402955e-12, -5.503025237513068e-13, 1.460218
4912667768e-11, -1.38932367201325e-11, -2.4460911983987544e-15, 5.260511488
752205e-7, 4.823300488969307e-7, -8.71618099133622e-8, 5.6704928158373046e-
8, -2.1000805295396934e-7, 4.5553898974983406e-7, -0.004886376640348863, -0
.011783899932696238, 0.0004986042239133174], [-1.5291357029799603e-16, 1.81
6270657897931e-12, 1.6715017367823953e-12, -3.0428571461016764e-13, 1.94486
15052528997e-13, -7.329895047188003e-13, 1.5803985247932107e-12, 6.96453843
4135631e-15, 3.090116622490232e-8, 2.99878508535714e-8, -5.8690470409024985
e-9, 3.0393840319558027e-9, -1.5422828514247695e-8, 2.8763488877692222e-8, 
0.005046414004588738, 0.012103510347214512, -0.0005111458719152432]], [[2.9
336486036487985e-19, -5.395265019509334e-7, -1.783473071874014e-7, -2.79466
90747090826e-9, -6.332815445648465e-11, 8.602178728008405e-11, -3.242891430
7001334e-10, 9.512744008705647e-17, 0.00012448986777145458, 1.2692879987083
14e-5, 1.2411363563313068e-6, 7.790580193156197e-8, 2.631884506874167e-6, -
1.567911144335616e-6, -0.003143913720401274, -0.007577727512399297, 0.00018
255092348343373], [3.111623041313999e-16, 5.295399148380686e-10, 5.33657142
81752716e-11, 5.41642340136522e-12, 2.5252836051026187e-13, 1.1527698779459
991e-11, -7.344726280916553e-12, 1.9012487234768004e-15, 6.433202846378893e
-7, 5.949012589957785e-7, -1.0940705441071636e-7, 6.820431088440586e-8, -2.
6785121786476487e-7, 5.625979684588528e-7, -0.004842899612579266, -0.011618
42040072994, 0.0004787476167686354], [-1.5291357029794747e-16, 2.1403583257
657853e-12, 1.9868901016932253e-12, -3.6559107545581294e-13, 2.261751845919
4265e-13, -8.970245354527191e-13, 1.8809003310046684e-12, -6.06393845130576
1e-15, 1.7712408972751372e-8, 1.8464909010040862e-8, -3.326578811552637e-9,
 1.7216837179447503e-9, -1.0017980517685361e-8, 1.794599044332399e-8, 0.005
122184382349185, 0.012218081992967884, -0.0005025280337997038]], [[2.933648
6037070497e-19, -5.379227475890714e-7, -1.7817314431871773e-7, -2.781007114
0247534e-9, -6.097276121369219e-11, 1.1421951304985762e-10, -3.330070973524
215e-10, 1.4640520092882122e-16, 0.00012653400748934354, 1.4594584344267692
e-5, 8.915232377094232e-7, 2.9354961103596586e-7, 1.7645030830479182e-6, 2.
325407196981078e-7, -0.003522986282421673, -0.008622372719389374, 0.0002256
0537594210276], [3.11162304131385e-16, 5.382215386234548e-10, 6.14347618337
8621e-11, 3.931800684596069e-12, 1.1687855910033405e-12, 7.852982624911712e
-12, 2.9373001330961863e-13, 1.1521564094039215e-15, 7.069954807661786e-7, 
6.599216262063095e-7, -1.2132640656664773e-7, 7.434023399326318e-8, -3.0333
465781560015e-7, 6.248975362474651e-7, -0.004795684599910702, -0.0114199178
22703494, 0.000455321255772848], [-1.5291357029798868e-16, 2.28723312473826
67e-12, 2.1440054638997844e-12, -3.9280652252802464e-13, 2.401045584222912e
-13, -9.865383519061463e-13, 2.0322615859084756e-12, -2.6905566681357965e-1
5, 3.067372133878578e-9, 5.347582607934586e-9, -5.119964944776026e-10, 2.51
646115548814e-10, -3.840618742133673e-9, 5.5933869461494735e-9, 0.005208529
423131767, 0.012338655470530466, -0.0004917610651598605]], [[2.933648445105
041e-19, -5.362921179243394e-7, -1.7797385409501105e-7, -2.771951536527271e
-9, -5.579097712344434e-11, 1.3085120663713528e-10, -3.179196514182842e-10,
 8.783499964581289e-17, 0.00012866653367760045, 1.6598791674125882e-5, 5.25
8702646725265e-7, 5.172890296549318e-7, 8.343134236950126e-7, 2.13261411693
8078e-6, -0.003518982474972022, -0.008722006737249467, 0.000226970700161036
76], [3.1116230390516533e-16, 5.473433945437229e-10, 6.999880431490634e-11,
 2.3666377289370566e-12, 2.1259407488676844e-12, 3.883150372566369e-12, 8.4
11675273769897e-12, -6.236469105594341e-16, 7.117876707414616e-7, 6.7180068
90403541e-7, -1.219350543712498e-7, 7.455865829221284e-8, -3.13752868953735
2e-7, 6.370703273652324e-7, -0.004748860905895305, -0.011207051349061322, 0
.00043016210346718273], [-1.5291356945380787e-16, 2.2447238552457116e-12, 2
.129046974902008e-12, -3.836765103261197e-13, 2.3498680648887987e-13, -9.94
8273295790063e-13, 2.021200376261764e-12, 1.427996042091789e-15, -1.1833100
668628358e-8, -8.298983656192128e-9, 2.3438963663624864e-9, -1.250439717773
546e-9, 2.6068052869520404e-9, -7.2928734493575575e-9, 0.005298643207815952
, 0.01245814850326651, -0.0004796422875333918]], [[2.933648127647172e-19, -
5.346346187515714e-7, -1.7774915885510494e-7, -2.767489489818993e-9, -4.779
363238212218e-11, 1.3560167018109356e-10, -2.787282915760427e-10, -4.962997
751877954e-17, 0.00013070971926565226, 1.8543496688746117e-5, 1.78262106870
11608e-7, 7.31221545565372e-7, -8.215182991494861e-8, 3.979308361345282e-6,
 -0.0031320459834944386, -0.00786242742178328, 0.00018661133603093362], [3.
111623034550484e-16, 5.561453053082023e-10, 7.836588340732917e-11, 8.667261
471027895e-13, 3.0474797083125856e-12, -5.4988913031167264e-14, 1.635573882
0710226e-11, -8.239754617074878e-16, 6.572121235289751e-7, 6.29261387693550
6e-7, -1.1117114484916203e-7, 6.878751583446021e-8, -2.9843917651616657e-7,
 5.9781489013829e-7, -0.004706131136376704, -0.010999158347059805, 0.000405
2642694336329], [-1.5291356776641862e-16, 2.0161016973823163e-12, 1.9422603
94708208e-12, -3.3889978988141055e-13, 2.1104199472752765e-13, -9.217948456
158273e-13, 1.8476169229158486e-12, 2.597737691767792e-15, -2.5783057775909
2e-8, -2.1367485763084416e-8, 5.009927904077167e-9, -2.6631211384240393e-9,
 8.799840326916245e-9, -1.9666062484637927e-8, 0.005385145861687143, 0.0125
69187682411874, -0.00046709992746798556]], [[2.9336482863453103e-19, -5.329
524978368048e-7, -1.7750084040361175e-7, -2.7671787458235857e-9, -3.7217836
37732394e-11, 1.2912979161599335e-10, -2.1708130878078118e-10, -2.395667364
897827e-16, 0.00013249280904939004, 2.0270589201398328e-5, -1.1864553723915
944e-7, 9.180774774701452e-7, -9.100185331492696e-7, 5.623020372466823e-6, 
-0.002393311524516632, -0.006107212457133864, 0.00010787772841174555], [3.1
116230368010765e-16, 5.638921649421694e-10, 8.585608850384506e-11, -4.27281
74436021955e-13, 3.8590417664059984e-12, -3.6395137175448266e-12, 2.3482674
576991434e-11, -9.928923318948015e-16, 5.476052198549981e-7, 5.354460655469
725e-7, -8.989648366864584e-8, 5.744063273652854e-8, -2.588199102798001e-7,
 5.100073690799595e-7, -0.004671161539368623, -0.010815674862421343, 0.0003
8257929326107967], [-1.5291356861008805e-16, 1.6194477744016966e-12, 1.5978
034580446866e-12, -2.6207644448855293e-13, 1.700648908079158e-13, -7.739586
142945729e-13, 1.5246166097803682e-12, 3.3599827459369188e-15, -3.764502939
751347e-8, -3.279486204018718e-8, 7.268678848637004e-9, -3.871313118166232e
-9, 1.4234795861365984e-8, -3.0520337529339194e-8, 0.005461177115174794, 0.
012665406265106594, -0.00045508943574204145]], [[2.933648762385887e-19, -5.
312500660558711e-7, -1.772326072441362e-7, -2.7701831385106964e-9, -2.45098
26580747566e-11, 1.1300802336725376e-10, -1.3645185901812839e-10, -3.688239
122434462e-17, 0.0001338658686563475, 2.1638702678665578e-5, -3.36274815816
7004e-7, 1.0626196246815937e-6, -1.5821611626527191e-6, 6.929705941692937e-
6, -0.0013624715325143103, -0.003592929067613304, -2.8005836303821402e-6], 
[3.111623043563714e-16, 5.699331358454097e-10, 9.18566950548687e-11, -1.391
2958860258302e-12, 4.494531645781494e-12, -6.579574299544324e-12, 2.9211643
248588745e-11, -5.175236171689957e-16, 3.917609405115123e-7, 3.976655915567
888e-7, -5.982438349619261e-8, 4.138327763195176e-8, -1.9829837565086886e-7
, 3.804729780782774e-7, -0.004646497835074785, -0.01067347052840945, 0.0003
639091799442014], [-1.5291357114160092e-16, 1.0866610338818826e-12, 1.12271
41780075931e-12, -1.5939267055144768e-13, 1.1518270702604412e-13, -5.639209
163299109e-13, 1.0774641427973126e-12, 1.6942701488476263e-15, -4.646499114
6418856e-8, -4.165134819154622e-8, 8.938471369573154e-9, -4.777801958866299
6e-9, 1.8469605322926612e-8, -3.8971737162252045e-8, 0.005520378461434084, 
0.012741180721540438, -0.00044455408370921306]], [[4.6751623163117124e-20, 
-1.6569025928034065e-8, -5.534268979084768e-9, -8.671322446868321e-11, -4.4
786514336349467e-13, 3.0234416209660143e-12, -2.1606353935251195e-12, -1.28
96004522703535e-17, 4.206402257175551e-6, 6.988795541925621e-7, -1.35893337
25031318e-8, 3.5503788427078575e-8, -6.088656212434049e-8, 2.38158556960736
02e-7, 0.001245600411400305, 0.002860729452572667, -0.00010214607553929092]
, [5.002599147143378e-17, 3.1678938517517795e-12, 5.261060135265377e-13, -1
.0205238560618153e-14, 2.671462735059237e-14, -4.572196890673573e-14, 1.791
1629534855511e-13, -2.4468027375869937e-16, 1.3539540795104723e-9, 1.456429
8109168564e-9, -1.7460275803579459e-10, 1.4510710091318965e-10, -7.64960897
0196612e-10, 1.4036832618291312e-9, -0.004393447156512099, -0.0101227796141
78738, 0.0003453504578626401], [-1.6904841995388052e-17, 7.35667460560498e-
16, 8.034598998601259e-16, -9.315746836072746e-17, 7.900959842793896e-17, -
4.201720640978288e-16, 7.767523367864484e-16, 6.9528422721247485e-16, -6.15
2610686959683e-11, -4.505640828103627e-11, 1.180325761893809e-11, -6.238913
89178676e-12, 1.9563965510033533e-11, -4.05336201606857e-11, 0.003780497556
492514, 0.008709473893476354, -0.000297237704424878]]], nothing, SciMLBase.
ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciMLBase.NullPa
rameters, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main
.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, No
thing, Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, SciML
Base.StandardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.FullSpeciali
ze, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64},
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothi
ng, Nothing, Nothing, Nothing}(Main.var"##WeaveSandBox#225".slider_crank_mm
!, [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, no
thing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, noth
ing, nothing, nothing, nothing), [0.0, 0.0, 0.450016933, 0.0, 0.0, 1.033398
63e-5, 1.69327969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.44489610
5, 0.00463434311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 38
2.45895095266985, -6.339193797155536e-7], (0.0, 0.1), SciMLBase.NullParamet
ers(), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), SciMLBase.Sta
ndardODEProblem()), OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.AutoForward
Diff{nothing, 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(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}())), O
rdinaryDiffEqCore.InterpolationData{SciMLBase.ODEFunction{true, SciMLBase.F
ullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matri
x{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSER
VED), Nothing, Nothing, Nothing, Nothing}, Vector{Vector{Float64}}, Vector{
Float64}, Vector{Vector{Vector{Float64}}}, Nothing, OrdinaryDiffEqRosenbroc
k.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Float64
}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTableau{
Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunctio
n{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slide
r_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciM
LBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float6
4}, SciMLBase.NullParameters}, SciMLBase.UJacobianWrapper{true, SciMLBase.O
DEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#2
25".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing,
 Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, ty
peof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Floa
t64, SciMLBase.NullParameters}, LinearSolve.LinearCache{Matrix{Float64}, Ve
ctor{Float64}, Vector{Float64}, SciMLBase.NullParameters, LinearSolve.Defau
ltLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Float6
4, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, Matr
ix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Nothing,
 Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, 
Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int
64}}, 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.RefValue{I
nt32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Ba
se.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vect
or{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing, Nothing, Nothing, M
atrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearAlgeb
ra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vec
tor{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tuple{D
ifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Nothing
, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tuple{}
}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Not
hing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tup
le{}}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDeriv
ativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{t
rue, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_c
rank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBa
se.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float64},
 SciMLBase.NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothin
g, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{
}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInterfa
ceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradie
ntWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeo
f(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing,
 Nothing, Nothing, 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{}}, Float64, ForwardDiff.DerivativeC
onfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 1}}}, Tuple{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.Auto
ForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), true
, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiff
EqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!), typ
eof(OrdinaryDiffEqCore.trivial_limiter!)}, OrdinaryDiffEqCore.DifferentialV
arsUndefined}(SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(
Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing
, Nothing, Nothing}(Main.var"##WeaveSandBox#225".slider_crank_mm!, [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], n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothin
g, nothing, nothing), [[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.6
9327969e-5, 150.0, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463
434311, -1.78591076e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095
266985, -6.339193797155536e-7], [0.00015000000000000096, -7.499576682940676
e-5, 0.4500169304662131, 4.448961052636021e-7, 4.63434311592467e-9, 1.03339
82379911499e-5, 1.6932794315479788e-5, 150.0, -74.99576640815987, -0.005064
88450368873, 0.444896105824963, 0.004634343127775004, -6.054169584992515e-6
, -2.47977849610951e-6, 0.06633307975256669, 382.4589986509165, -0.02694417
633375928], [0.00030346004349877573, -0.0001517214564432677, 0.450016922635
2828, 9.000546114972841e-7, 9.375586460700212e-9, 1.0333973952809054e-5, 1.
6932791887546723e-5, 150.0, -74.99576445216772, -0.010243850561905663, 0.44
48961085180174, 0.004634343182686087, -1.0419742862265787e-5, -2.2670489653
288746e-6, 0.1341963690599594, 382.459172880821, -0.05450987701921593], [0.
0005015101859710008, -0.00025074093262395197, 0.45001690469755357, 1.487466
1997899658e-6, 1.549446872075291e-8, 1.0333956477602698e-5, 1.6932789072694
76e-5, 150.0, -74.9957599696659, -0.01692764725306674, 0.4448961147590913, 
0.0046343433081191395, -1.605031743433838e-5, -1.998148870487642e-6, 0.2217
7844269185154, 382.45958222640934, -0.09008523290046067], [0.00074039733206
01213, -0.00037017774685971374, 0.45001687131923174, 2.1959992962262974e-6,
 2.2875035873089427e-8, 1.0333925513299973e-5, 1.6932786140135973e-5, 150.0
, -74.99575162696239, -0.024989623539144558, 0.4448961264376182, 0.00463434
3540181322, -2.2833542079900397e-5, -1.687687855988195e-6, 0.32741976926166
49, 382.4603533091788, -0.13299613415557263], [0.001026076084043756, -0.000
5130090189330409, 0.45001681454498926, 3.0433151152644683e-6, 3.17012594179
9583e-8, 1.0333874314727199e-5, 1.6932783257358433e-5, 150.0, -74.995737435
05638, -0.034630751562149904, 0.44489614637379493, 0.004634343930813733, -3
.092795000110172e-5, -1.3458597346916303e-6, 0.45375394666783836, 382.46167
16345697, -0.18431229207526867], [0.0013588073446756405, -0.000679365170391
0777, 0.4500167252725207, 4.030187519386913e-6, 4.198120071422105e-8, 1.033
3795282905683e-5, 1.6932780664311376e-5, 150.0, -74.99571511819076, -0.0458
5986399317161, 0.44489617781645624, 0.004634344534596813, -4.03226603680975
4e-5, -1.0035719088735577e-6, 0.6008968994900165, 382.46374749559607, -0.24
408073976409575], [0.001740586686285242, -0.0008702438947217648, 0.45001659
215344697, 5.162535375758511e-6, 5.377651515804742e-8, 1.0333678994036453e-
5, 1.6932778510456533e-5, 150.0, -74.99568183924133, -0.05874435208168425, 
0.4448962248481436, 0.0046343454111998795, -5.104499706866777e-5, -7.085018
401089483e-7, 0.7697320071785777, 382.46683774260936, -0.3126602060042485],
 [0.0021723943418506444, -0.0010861352258557267, 0.45001640206928745, 6.443
266107952237e-6, 6.711748901974743e-8, 1.0333514702596691e-5, 1.69327767659
11032e-5, 150.0, -74.9956343188636, -0.07331736380253197, 0.444896292250668
23, 0.004634346613801736, -6.307870192179609e-5, -5.350298871481906e-7, 0.9
606941001032608, 382.4712301132461, -0.39022716644614525], [0.0026528194528
358338, -0.0013263336978551104, 0.4500161412806057, 7.868195255525723e-6, 8
.19605347001388e-8, 1.0333291418107752e-5, 1.6932775041336885e-5, 150.0, -7
4.99556912303368, -0.0895313780009222, 0.4448963851425868, 0.00463434817026
6432, -7.632275342330097e-5, -5.89627232483452e-7, 1.173161085869231, 382.4
772095984531, -0.4765287336688831]  …  [14.984326033266097, -0.337433846609
92903, 0.17066384816348634, 0.0001925670949836511, 2.4336366748648265e-5, -
5.386650914862699e-6, -8.467722006862385e-6, 150.0, 59.566762549226176, -8.
980837245398131, -0.03360403817608118, -0.005563232710122797, 0.00062019571
07776033, 0.0007847214162413029, -64.3334282966124, -165.32058470424687, -1
8.46243029179165], [14.986242913520385, -0.33667208827259476, 0.17054925886
42362, 0.00019214049594764538, 2.4265333699461173e-5, -5.37872618426043e-6,
 -8.45744788765731e-6, 150.0, 59.651651351019304, -8.952884000168048, -0.03
3161123042279625, -0.005553664394563368, 0.0006187827878562012, 0.000824604
8083912312, -64.11932271845029, -165.20267763443766, -18.429634461922937], 
[14.988159793774674, -0.33590924668289884, 0.1704350266525003, 0.0001917195
3578593913, 2.4194425374568393e-5, -5.370866167627896e-6, -8.4466161108339e
-6, 150.0, 59.73629571530283, -8.924951958631235, -0.032721450745209886, -0
.005543765503541297, 0.0006102586533010521, 0.0008715776087878277, -63.8985
3631157582, -165.06903288699928, -18.397226052246108], [14.990076674028963,
 -0.335145324984915, 0.17032115123861555, 0.00019130417643464318, 2.4123643
805991987e-5, -5.36315357428237e-6, -8.435153747933248e-6, 150.0, 59.820692
32779677, -8.89704416909985, -0.03228446840503514, -0.005533891760450871, 0
.0005959637126418777, 0.0009227585268194381, -63.669373345660134, -164.9153
2252116804, -18.365385794203267], [14.991993554283251, -0.3343803263693563,
 0.1702076322898355, 0.00019089438770765417, 2.4052986060156764e-5, -5.3556
51854823914e-6, -8.423028619337347e-6, 150.0, 59.90483725465455, -8.8691642
80820632, -0.0318495058514582, -0.0055244594691963465, 0.000577550407148896
2, 0.0009746939898262994, -63.43079660007186, -164.73881903247056, -18.3342
2081502363], [14.99391043453754, -0.3336142540794395, 0.17009446942447687, 
0.0001904901484001149, 2.3982443669257198e-5, -5.348402072541752e-6, -8.410
254888150922e-6, 150.0, 59.98872627013555, -8.841316251619563, -0.031415838
7052948, -0.00551591268323262, 0.0005568456165567288, 0.0010236335221000734
, -63.18251239979738, -164.53862777507547, -18.303756006441112], [14.995827
314791828, -0.33284711141237733, 0.1699816622100011, 0.00019009144655123672
, 2.3912002501702476e-5, -5.341421629614125e-6, -8.396894943775581e-6, 150.
0, 60.072355208663296, -8.813504028623818, -0.030982755958024723, -0.005508
687788191032, 0.000535699957151365, 0.0010658310890655338, -62.924994970229
88, -164.31577070001006, -18.273932117492073], [14.997744195046117, -0.3320
7890171636645, 0.16986921016521084, 0.00018969827884406077, 2.3841643086386
884e-5, -5.334704937855167e-6, -8.38305739836016e-6, 150.0, 60.155720312579
604, -8.785731227978577, -0.030549626541498693, -0.005503178379737096, 0.00
05158362335030889, 0.0010978479544057754, -62.659448342611896, -164.0731144
1467883, -18.244610681603135], [14.999661075300406, -0.3313096283833128, 0.
16975711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.328225
965594457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.758000839
578706, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409,
 0.001116832441838903, -62.38770921173346, -163.8151483533587, -18.21558533
772592], [14.999999999998904, -0.3311735023248599, 0.1697373296153814, 0.00
018924268895326456, 2.3758915247975978e-5, -5.327102156215073e-6, -8.366365
693649003e-6, 150.0, 60.253483257566366, -8.753102401475758, -0.03003920050
7881367, -0.00549931871516871, 0.0004960535857023572, 0.001118665317438119,
 -62.339113356546875, -163.76819159511533, -18.21047117266844]], [0.0, 1.0e
-6, 2.023066956658499e-6, 3.3434012398066557e-6, 4.935982213734114e-6, 6.84
05072269583345e-6, 9.05871563117088e-6, 1.1603911241901547e-5, 1.4482628945
67087e-5, 1.768546301890546e-5  …  0.09989550688844792, 0.09990828609014318
, 0.09992106529183845, 0.09993384449353371, 0.09994662369522897, 0.09995940
289692423, 0.0999721820986195, 0.09998496130031476, 0.09999774050201002, 0.
1], [[[0.0, 0.0, 0.450016933, 0.0, 0.0, 1.03339863e-5, 1.69327969e-5, 150.0
, -74.99576703969453, -2.68938672e-6, 0.444896105, 0.00463434311, -1.785910
76e-6, -2.68938672e-6, -2.303851027879405e-5, 382.45895095266985, -6.339193
797155536e-7]], [[-2.68644888130459e-19, -2.1028710514110055e-13, 2.5310975
04465909e-9, -2.636037520298232e-16, -5.925709186045359e-18, 2.134177734153
846e-12, -1.0486643257935952e-13, 6.895679674685942e-22, -6.32879179739638e
-7, 1.9224276157283732e-10, -8.932668185548306e-10, -1.7771720558451595e-11
, -2.041478699358192e-10, 2.2544327438234717e-10, 0.0003880183473319511, -5
.8355519560835916e-5, 1.0630243690469483e-5], [1.7159157834705832e-17, -2.1
097779974468737e-13, 4.1581944011738246e-17, -2.976681678458063e-16, -5.913
949878934952e-18, -5.369751010934185e-17, 4.9885191137136424e-17, 1.9036602
802577233e-20, 2.488417235150416e-13, 2.6468931333899795e-10, -5.2561424676
197376e-14, 2.142152814742128e-14, -1.7168587934934325e-10, 2.9791331586402
81e-10, -0.0013042580268240937, -1.2023406134695895e-5, -3.572636056478128e
-5], [-7.449142247232344e-18, 1.2686687789430311e-17, 6.65612852086963e-17,
 -5.404560358243648e-20, -1.017494822822154e-20, -4.295806611458912e-17, 7.
486190902461984e-17, -4.924661074765362e-20, -5.214496319572234e-13, -4.420
906625491374e-14, 9.669513300308266e-14, -5.3333286505331213e-14, 1.3953026
614421939e-14, -4.4446853140907365e-14, 0.001110092209618081, 3.16885820122
36744e-5, 3.0410841831175233e-5]], [[-1.6679374775645461e-19, -8.8760664487
45893e-13, 2.649214320774772e-9, -1.2181239638309662e-15, -2.49275011485494
36e-17, 2.23328158235076e-12, -1.0904629387719927e-13, -8.379597200400739e-
21, -6.624121975148487e-7, 1.038460273452668e-9, -9.35165374184182e-10, -1.
85468056242561e-11, -7.567997405792764e-10, 1.1783330405931262e-9, 4.918635
154529407e-9, -3.832826274161515e-5, 8.217641473217934e-9], [2.828663622595
5885e-17, -2.2591234724324318e-13, 3.2951150329457914e-16, -3.1879020436629
335e-16, -6.36139971893541e-18, -2.4235315221372914e-16, 3.7417699677472744
e-16, -5.109026668916804e-20, -3.971250033686333e-13, 2.8328362493135145e-1
0, 5.796710221579225e-14, -5.5580835099068645e-14, -1.8377573325179876e-10,
 3.188602743167965e-10, -1.053059472209983e-7, -8.893106417585768e-5, -6.07
4575688731229e-9], [-1.3545735095508755e-17, 8.588916146982523e-18, 7.28717
408010273e-17, -1.1660964911883392e-19, 4.306816162026504e-20, -4.705976975
802095e-17, 8.197304146935367e-17, 1.6536642574352758e-19, 2.05079203120854
6e-12, -6.860910717367249e-14, -3.948738045256091e-13, 1.9197579997479003e-
13, 3.4576347247967745e-14, -6.915596401597236e-14, 3.627908178359992e-8, 9
.815084338608153e-5, 7.290426131836957e-9]], [[8.909214095137833e-20, -2.71
6416938071741e-12, 4.412422167773359e-9, -3.777153942481036e-15, -7.6070309
67859443e-17, 3.717662607449115e-12, -1.7841028485975655e-13, -1.6345870969
315688e-21, -1.1032819138364779e-6, 3.281083291381012e-9, -1.55844597492612
67e-9, -3.067695054257877e-11, -2.267145334014816e-9, 3.7090264601121193e-9
, -1.569919315800795e-7, -7.776191753871322e-5, 1.7920592948080683e-8], [1.
9306313079746878e-17, -4.855808626845723e-13, 1.3758614182938147e-15, -6.85
6144158814481e-16, -1.358640993383467e-17, -9.542549735837704e-16, 1.555788
5617244117e-15, -4.660509122356508e-20, 1.005465208559602e-12, 6.0819777080
01492e-10, -2.597526810116501e-13, 2.2579071940165973e-14, -3.9466541117537
916e-10, 6.846685469856837e-10, 2.7489537209267965e-7, -0.00010081882728926
393, 8.326169232812192e-9], [-5.45342101619746e-19, 6.2901830520281235e-18,
 2.0183848492285753e-16, -3.3947852254725966e-19, 1.2190688467283253e-19, -
1.3035423374957462e-16, 2.2708300740184133e-16, 1.4810453234419243e-19, 3.2
257168147697003e-12, -3.3815208045986643e-13, -6.248970679183017e-13, 2.973
2443314248617e-13, 1.6872503220949348e-13, -3.384657751012127e-13, -3.23823
8658212258e-7, 0.00012325354584293987, -3.7022805512392033e-9]], [[-6.41139
666954011e-19, -6.217157962554681e-12, 6.419672863015317e-9, -8.69676025341
6632e-15, -1.7317481431897158e-16, 5.402872510339046e-12, -2.49654620976902
1e-13, 8.967836873052249e-21, -1.6051602774535172e-6, 7.606424339454942e-9,
 -2.2701714951664266e-9, -4.392104543986514e-11, -5.137334448355259e-9, 8.5
85753152226208e-9, -3.00572073800894e-7, -0.00010771100977015242, 4.1839113
08612285e-8], [2.790014621266635e-17, -8.521419223877949e-13, 3.89417191782
5173e-15, -1.204820489920747e-15, -2.3387267147834448e-17, -2.6353082437037
084e-15, 4.396239759933859e-15, 5.468823523370809e-20, 5.275715453407094e-1
2, 1.064586566936346e-9, -1.1913036912788336e-12, 2.962550560890637e-13, -6
.912322945271892e-10, 1.1987845351993837e-9, 4.909537148709992e-7, -0.00016
342964157084158, 1.8749907787600612e-8], [-6.503118015759026e-18, 1.5794087
552590876e-17, 4.2590682742884226e-16, -6.0488044067937385e-19, 1.634525024
0626014e-19, -2.752666050024651e-16, 4.79348524777757e-16, -8.8826635773378
98e-20, 1.2325655890697214e-12, -1.0998009808038487e-12, -2.539437116723122
4e-13, 9.50619665806073e-14, 5.476382294515311e-13, -1.1001008696764637e-12
, -5.16329593518248e-7, 0.00019365802925696735, -9.826342504051446e-9]], [[
-9.218593118416116e-19, -1.2785773065742038e-11, 9.18087945822004e-9, -1.79
51193161147498e-14, -3.5274778860666507e-16, 7.711520682033672e-12, -3.3146
5315437919e-13, 2.3374090645574878e-23, -2.295529114813181e-6, 1.5730237835
32498e-8, -3.253623589517809e-9, -6.103416665912717e-11, -1.049951602242469
2e-8, 1.7744130052135492e-8, -4.0889023914145056e-7, -0.0001519896445386073
, 9.011873806746463e-8], [4.012975015230849e-17, -1.4573288412061883e-12, 9
.6940510031957e-15, -2.0645922802735847e-15, -3.8967044232846597e-17, -6.47
85192136725226e-15, 1.0936143458747589e-14, 1.0240829584077005e-19, 1.34349
07722477084e-11, 1.8121994074365028e-9, -3.0128816664706924e-12, 7.66586091
1939687e-13, -1.1779395653092514e-9, 2.0417065488196287e-9, 2.9923826421363
83e-7, -0.00023683070277724666, 2.4907409253311606e-8], [-1.167726215150836
5e-17, 2.395403201633611e-17, 8.662895219290244e-16, -1.9208326172752004e-1
8, 5.038575053241168e-19, -5.606006537041377e-16, 9.755534339980778e-16, -9
.838608636843079e-20, 3.134214944228992e-12, -3.1885970255038583e-12, -6.36
2328532997607e-13, 2.532058434861518e-13, 1.5858436478782219e-12, -3.188026
1427980117e-12, -4.555351272089849e-7, 0.00027977348823636386, -1.424563122
2729711e-8]], [[-6.312477917705783e-19, -2.3600522411495212e-11, 1.24542445
08481196e-8, -3.3234356960055793e-14, -6.408661966024721e-16, 1.04271828618
60546e-11, -3.923488349883611e-13, -2.6947062347972443e-20, -3.113897167929
569e-6, 2.908266046805171e-8, -4.429492198120565e-9, -7.874279190133463e-11
, -1.928209353521366e-8, 3.27998561987377e-8, -8.012949016290241e-7, -0.000
19955670433057586, 1.620192606820233e-7], [3.3114549677021355e-17, -2.30246
11181992188e-12, 2.0971710294220385e-14, -3.2734060895833876e-15, -5.869231
736652197e-17, -1.391584528021881e-14, 2.3653185482313918e-14, -1.853803348
0431378e-19, 2.8254004938032305e-11, 2.84090873968618e-9, -6.34932406994223
34e-12, 1.5810614840455905e-12, -1.8500048548075993e-9, 3.2035151390080954e
-9, 7.430550338280591e-7, -0.0003351540432669211, 5.9025028283509216e-8], [
1.2141136654862322e-18, 3.163151770007981e-17, 1.5798625640255855e-15, -4.2
299356550814756e-18, 1.1255249595345094e-18, -1.024517793892278e-15, 1.7809
562748429898e-15, 5.339907917719559e-19, 4.979705991781144e-12, -7.89047577
360474e-12, -1.0194583951417038e-12, 3.9133574440957934e-13, 3.921220220449
4915e-12, -7.886669379908396e-12, -9.675368553158148e-7, 0.0003916685785537
162, -4.3731241893152035e-8]], [[-4.063173680172119e-19, -4.06117415947143e
-11, 1.639674917001976e-8, -5.736232108439756e-14, -1.0757534789019004e-15,
 1.3659811139894144e-11, -4.0042973340101123e-13, -4.676226309791659e-20, -
4.099461536459453e-6, 4.9976453786664213e-8, -5.8635005702549525e-9, -9.555
206975123522e-11, -3.3009860165561686e-8, 5.6372874135294724e-8, -1.3352815
468897515e-6, -0.00025461246314322845, 2.742645973698752e-7], [5.4940758298
06505e-17, -3.4780000655935953e-12, 4.149200008071875e-14, -4.9714353996075
85e-15, -8.182256419392239e-17, -2.7420891907609556e-14, 4.6802539416214724
e-14, -2.1373109018966815e-19, 5.848681609715172e-11, 4.239473949334734e-9,
 -1.3037004456145713e-11, 3.3743667595912344e-12, -2.768763993790751e-9, 4.
787221912945002e-9, 1.1801090614182184e-6, -0.00045167140124373535, 1.09631
74632939791e-7], [-1.8445901292823254e-17, 2.793403495627838e-17, 2.7008293
566814983e-15, -8.712979682464227e-18, 2.2083663725596058e-18, -1.757144577
4277823e-15, 3.0493714338953492e-15, 5.275266495249173e-19, 2.4170981405058
734e-12, -1.768523606035792e-11, -5.778760700462253e-13, 8.650694643264627e
-14, 8.784677570440368e-12, -1.7672920992529123e-11, -1.4943502222061313e-6
, 0.0005251022811207411, -8.93614797660582e-8]], [[-1.1081854131874582e-18,
 -6.588291488049572e-11, 2.0975753247767066e-8, -9.338331916137253e-14, -1.
6810757274085056e-15, 1.7347303503142017e-11, -2.9502830623068256e-13, -3.1
98111202380468e-20, -5.243974806203276e-6, 8.073276177897539e-8, -7.5603440
20546902e-9, -1.0707785956833474e-10, -5.322820802408817e-8, 9.110934912770
904e-8, -2.0395664575446834e-6, -0.0003125398689663399, 4.37510508297045e-7
], [4.635722455124379e-17, -5.032024933118211e-12, 7.601650858099943e-14, -
7.24800404805605e-15, -1.04421646279849e-16, -5.013620556065303e-14, 8.5783
47027586598e-14, -4.57355437474102e-19, 1.0511872728537173e-10, 6.023431035
584239e-9, -2.3468693703564796e-11, 5.984786805694499e-12, -3.9510924113643
61e-9, 6.8159337440827064e-9, 1.5441172331018567e-6, -0.000590738102662893,
 1.821062831447863e-7], [-5.014951129436326e-18, 8.008980360468643e-17, 4.3
30990785675039e-15, -1.8199428332030012e-17, 4.645929117504315e-18, -2.8313
569116193075e-15, 4.9013738278691584e-15, 1.6892369581641812e-18, 6.7320605
55103941e-12, -3.6295737405619447e-11, -1.4706876109639348e-12, 4.106332004
1538605e-13, 1.802580443736974e-11, -3.626933851278851e-11, -2.102705846409
174e-6, 0.0006836981791799891, -1.609987011831582e-7]], [[-6.04232065385976
9e-19, -1.0094091593684618e-10, 2.5965330879497233e-8, -1.43697482799756e-1
3, -2.438481262827989e-15, 2.1253874513392902e-11, 1.0965481959249376e-14, 
7.708298416972134e-20, -6.490834952930478e-6, 1.2279164436665567e-7, -9.461
210571829304e-9, -1.0643434622349348e-10, -8.093738041888951e-8, 1.38689889
64504084e-7, -3.1663431789963676e-6, -0.00036520761125543894, 6.48585972181
51e-7], [7.990781996831157e-17, -6.929759212642766e-12, 1.2893820490162184e
-13, -1.0088367516375508e-14, -1.168108420197975e-16, -8.5003880912282e-14,
 1.4562003983941617e-13, 5.249023265385382e-19, 1.768151263594142e-10, 8.08
1720145201641e-9, -3.9481432987294443e-11, 1.000084960702549e-11, -5.335214
093920275e-9, 9.17313190959538e-9, 2.6262067367649104e-6, -0.00075007945674
208, 3.060595222997916e-7], [-4.110839550879798e-17, 1.4124744793963772e-16
, 6.447661362456701e-15, -3.412938753318921e-17, 8.726941019834708e-18, -4.
2447130054553484e-15, 7.321606188854658e-15, -1.5030074066954777e-18, 1.167
3381371926885e-11, -6.797991770479529e-11, -2.5016112943780967e-12, 7.67207
774615985e-13, 3.376065501556329e-11, -6.793387539456807e-11, -3.3975338053
311473e-6, 0.0008637806125323104, -2.850869834160566e-7]]  …  [[2.933648603
7837262e-19, -5.442087522399419e-7, -1.7875084111898742e-7, -2.857212372395
194e-9, -5.6569673137703235e-11, -5.113336940405205e-11, -1.856604262006517
2e-10, -9.203301077663326e-19, 0.00012047089714802024, 9.011365856829189e-6
, 1.8888024875944097e-6, -3.619388690750961e-7, 4.194631399685197e-6, -5.04
5210499000781e-6, -0.00015918550756900243, -1.694892708272034e-5, -0.000147
25820905094205], [3.1116230413083403e-16, 5.128336225328267e-10, 3.80776230
29858716e-11, 8.096728197707873e-12, -1.5805042990283118e-12, 1.79836315134
69197e-11, -2.178245700536632e-11, 3.0103193081652624e-16, 1.73064371745822
72e-7, 1.5540196992437566e-7, -1.9716088010834108e-8, 2.1943375380179976e-8
, -4.679290320405091e-8, 1.4600052829562966e-7, -0.004947832738611011, -0.0
11957223954568549, 0.000521865017958786], [-1.529135702977745e-16, 7.563361
401827061e-13, 6.828264142689799e-13, -1.0198441888859811e-13, 9.0138502753
06016e-14, -2.3744532253376937e-13, 6.434421326498872e-13, -8.8712333785788
31e-16, 4.8786094097510235e-8, 4.4721263734792686e-8, -9.341945248841233e-9
, 4.807561478617081e-9, -2.2254387907711105e-8, 4.248740196849164e-8, 0.004
949409406797013, 0.01191860981389142, -0.0005197328296080237]], [[2.9336484
44973088e-19, -5.426643690946212e-7, -1.786312873472583e-7, -2.833748451344
581e-9, -6.062223803105835e-11, 8.69491681668701e-13, -2.4599285201209127e-
10, -1.9003647650813345e-16, 0.00012132628377865647, 9.786312750445978e-6, 
1.7653065875301784e-6, -2.6298868958516986e-7, 3.900779361746304e-6, -4.314
734991844327e-6, -0.0013900034665488149, -0.00308666908779802, -1.176462109
7236174e-5], [3.1116230390553975e-16, 5.162930113516942e-10, 4.120678963425
3996e-11, 7.605854417600477e-12, -1.1771519552901084e-12, 1.681784236023893
2e-11, -1.883373507765518e-11, -2.1687246325636648e-16, 3.6486961229810624e
-7, 3.316535855831502e-7, -5.642183049468753e-8, 4.08345598737095e-8, -1.34
32980045339517e-7, 3.127126645847042e-7, -0.004922515329229446, -0.01190094
9905994702, 0.0005133559781313052], [-1.5291356945388715e-16, 1.34197624865
24381e-12, 1.2243965768897096e-12, -2.139392567965675e-13, 1.47812534444100
76e-13, -5.07199120790887e-13, 1.156121081859829e-12, 4.193078781727509e-16
, 4.1551339234764523e-8, 3.898285231780191e-8, -7.930748366332455e-9, 4.096
91399950161e-9, -1.9615399961049953e-8, 3.717009895952939e-8, 0.00498735355
0195709, 0.012001941639603896, -0.0005170093543069789]], [[2.93364860351318
3e-19, -5.411056138886046e-7, -1.7849864530568072e-7, -2.8125203477708353e-
9, -6.307139175185835e-11, 4.752860375656126e-11, -2.9397489632555994e-10, 
-2.297174689433087e-16, 0.00012270434902258092, 1.1046424556444151e-5, 1.54
19703372381354e-6, -1.1256209779254121e-7, 3.364491660694715e-6, -3.1247640
32115465e-6, -0.0024129443329487387, -0.005679115030157327, 0.0001012382773
2831481], [3.111623041317193e-16, 5.220215584873869e-10, 4.643937225102078e
-11, 6.681433532402955e-12, -5.503025237513068e-13, 1.4602184912667768e-11,
 -1.38932367201325e-11, -2.4460911983987544e-15, 5.260511488752205e-7, 4.82
3300488969307e-7, -8.71618099133622e-8, 5.6704928158373046e-8, -2.100080529
5396934e-7, 4.5553898974983406e-7, -0.004886376640348863, -0.01178389993269
6238, 0.0004986042239133174], [-1.5291357029799603e-16, 1.816270657897931e-
12, 1.6715017367823953e-12, -3.0428571461016764e-13, 1.9448615052528997e-13
, -7.329895047188003e-13, 1.5803985247932107e-12, 6.964538434135631e-15, 3.
090116622490232e-8, 2.99878508535714e-8, -5.8690470409024985e-9, 3.03938403
19558027e-9, -1.5422828514247695e-8, 2.8763488877692222e-8, 0.0050464140045
88738, 0.012103510347214512, -0.0005111458719152432]], [[2.9336486036487985
e-19, -5.395265019509334e-7, -1.783473071874014e-7, -2.7946690747090826e-9,
 -6.332815445648465e-11, 8.602178728008405e-11, -3.2428914307001334e-10, 9.
512744008705647e-17, 0.00012448986777145458, 1.269287998708314e-5, 1.241136
3563313068e-6, 7.790580193156197e-8, 2.631884506874167e-6, -1.5679111443356
16e-6, -0.003143913720401274, -0.007577727512399297, 0.00018255092348343373
], [3.111623041313999e-16, 5.295399148380686e-10, 5.3365714281752716e-11, 5
.41642340136522e-12, 2.5252836051026187e-13, 1.1527698779459991e-11, -7.344
726280916553e-12, 1.9012487234768004e-15, 6.433202846378893e-7, 5.949012589
957785e-7, -1.0940705441071636e-7, 6.820431088440586e-8, -2.678512178647648
7e-7, 5.625979684588528e-7, -0.004842899612579266, -0.01161842040072994, 0.
0004787476167686354], [-1.5291357029794747e-16, 2.1403583257657853e-12, 1.9
868901016932253e-12, -3.6559107545581294e-13, 2.2617518459194265e-13, -8.97
0245354527191e-13, 1.8809003310046684e-12, -6.063938451305761e-15, 1.771240
8972751372e-8, 1.8464909010040862e-8, -3.326578811552637e-9, 1.721683717944
7503e-9, -1.0017980517685361e-8, 1.794599044332399e-8, 0.005122184382349185
, 0.012218081992967884, -0.0005025280337997038]], [[2.9336486037070497e-19,
 -5.379227475890714e-7, -1.7817314431871773e-7, -2.7810071140247534e-9, -6.
097276121369219e-11, 1.1421951304985762e-10, -3.330070973524215e-10, 1.4640
520092882122e-16, 0.00012653400748934354, 1.4594584344267692e-5, 8.91523237
7094232e-7, 2.9354961103596586e-7, 1.7645030830479182e-6, 2.325407196981078
e-7, -0.003522986282421673, -0.008622372719389374, 0.00022560537594210276],
 [3.11162304131385e-16, 5.382215386234548e-10, 6.143476183378621e-11, 3.931
800684596069e-12, 1.1687855910033405e-12, 7.852982624911712e-12, 2.93730013
30961863e-13, 1.1521564094039215e-15, 7.069954807661786e-7, 6.5992162620630
95e-7, -1.2132640656664773e-7, 7.434023399326318e-8, -3.0333465781560015e-7
, 6.248975362474651e-7, -0.004795684599910702, -0.011419917822703494, 0.000
455321255772848], [-1.5291357029798868e-16, 2.2872331247382667e-12, 2.14400
54638997844e-12, -3.9280652252802464e-13, 2.401045584222912e-13, -9.8653835
19061463e-13, 2.0322615859084756e-12, -2.6905566681357965e-15, 3.0673721338
78578e-9, 5.347582607934586e-9, -5.119964944776026e-10, 2.51646115548814e-1
0, -3.840618742133673e-9, 5.5933869461494735e-9, 0.005208529423131767, 0.01
2338655470530466, -0.0004917610651598605]], [[2.933648445105041e-19, -5.362
921179243394e-7, -1.7797385409501105e-7, -2.771951536527271e-9, -5.57909771
2344434e-11, 1.3085120663713528e-10, -3.179196514182842e-10, 8.783499964581
289e-17, 0.00012866653367760045, 1.6598791674125882e-5, 5.258702646725265e-
7, 5.172890296549318e-7, 8.343134236950126e-7, 2.132614116938078e-6, -0.003
518982474972022, -0.008722006737249467, 0.00022697070016103676], [3.1116230
390516533e-16, 5.473433945437229e-10, 6.999880431490634e-11, 2.366637728937
0566e-12, 2.1259407488676844e-12, 3.883150372566369e-12, 8.411675273769897e
-12, -6.236469105594341e-16, 7.117876707414616e-7, 6.718006890403541e-7, -1
.219350543712498e-7, 7.455865829221284e-8, -3.137528689537352e-7, 6.3707032
73652324e-7, -0.004748860905895305, -0.011207051349061322, 0.00043016210346
718273], [-1.5291356945380787e-16, 2.2447238552457116e-12, 2.12904697490200
8e-12, -3.836765103261197e-13, 2.3498680648887987e-13, -9.948273295790063e-
13, 2.021200376261764e-12, 1.427996042091789e-15, -1.1833100668628358e-8, -
8.298983656192128e-9, 2.3438963663624864e-9, -1.250439717773546e-9, 2.60680
52869520404e-9, -7.2928734493575575e-9, 0.005298643207815952, 0.01245814850
326651, -0.0004796422875333918]], [[2.933648127647172e-19, -5.3463461875157
14e-7, -1.7774915885510494e-7, -2.767489489818993e-9, -4.779363238212218e-1
1, 1.3560167018109356e-10, -2.787282915760427e-10, -4.962997751877954e-17, 
0.00013070971926565226, 1.8543496688746117e-5, 1.7826210687011608e-7, 7.312
21545565372e-7, -8.215182991494861e-8, 3.979308361345282e-6, -0.00313204598
34944386, -0.00786242742178328, 0.00018661133603093362], [3.111623034550484
e-16, 5.561453053082023e-10, 7.836588340732917e-11, 8.667261471027895e-13, 
3.0474797083125856e-12, -5.4988913031167264e-14, 1.6355738820710226e-11, -8
.239754617074878e-16, 6.572121235289751e-7, 6.292613876935506e-7, -1.111711
4484916203e-7, 6.878751583446021e-8, -2.9843917651616657e-7, 5.978148901382
9e-7, -0.004706131136376704, -0.010999158347059805, 0.0004052642694336329],
 [-1.5291356776641862e-16, 2.0161016973823163e-12, 1.942260394708208e-12, -
3.3889978988141055e-13, 2.1104199472752765e-13, -9.217948456158273e-13, 1.8
476169229158486e-12, 2.597737691767792e-15, -2.57830577759092e-8, -2.136748
5763084416e-8, 5.009927904077167e-9, -2.6631211384240393e-9, 8.799840326916
245e-9, -1.9666062484637927e-8, 0.005385145861687143, 0.012569187682411874,
 -0.00046709992746798556]], [[2.9336482863453103e-19, -5.329524978368048e-7
, -1.7750084040361175e-7, -2.7671787458235857e-9, -3.721783637732394e-11, 1
.2912979161599335e-10, -2.1708130878078118e-10, -2.395667364897827e-16, 0.0
0013249280904939004, 2.0270589201398328e-5, -1.1864553723915944e-7, 9.18077
4774701452e-7, -9.100185331492696e-7, 5.623020372466823e-6, -0.002393311524
516632, -0.006107212457133864, 0.00010787772841174555], [3.1116230368010765
e-16, 5.638921649421694e-10, 8.585608850384506e-11, -4.2728174436021955e-13
, 3.8590417664059984e-12, -3.6395137175448266e-12, 2.3482674576991434e-11, 
-9.928923318948015e-16, 5.476052198549981e-7, 5.354460655469725e-7, -8.9896
48366864584e-8, 5.744063273652854e-8, -2.588199102798001e-7, 5.100073690799
595e-7, -0.004671161539368623, -0.010815674862421343, 0.0003825792932610796
7], [-1.5291356861008805e-16, 1.6194477744016966e-12, 1.5978034580446866e-1
2, -2.6207644448855293e-13, 1.700648908079158e-13, -7.739586142945729e-13, 
1.5246166097803682e-12, 3.3599827459369188e-15, -3.764502939751347e-8, -3.2
79486204018718e-8, 7.268678848637004e-9, -3.871313118166232e-9, 1.423479586
1365984e-8, -3.0520337529339194e-8, 0.005461177115174794, 0.012665406265106
594, -0.00045508943574204145]], [[2.933648762385887e-19, -5.312500660558711
e-7, -1.772326072441362e-7, -2.7701831385106964e-9, -2.4509826580747566e-11
, 1.1300802336725376e-10, -1.3645185901812839e-10, -3.688239122434462e-17, 
0.0001338658686563475, 2.1638702678665578e-5, -3.362748158167004e-7, 1.0626
196246815937e-6, -1.5821611626527191e-6, 6.929705941692937e-6, -0.001362471
5325143103, -0.003592929067613304, -2.8005836303821402e-6], [3.111623043563
714e-16, 5.699331358454097e-10, 9.18566950548687e-11, -1.3912958860258302e-
12, 4.494531645781494e-12, -6.579574299544324e-12, 2.9211643248588745e-11, 
-5.175236171689957e-16, 3.917609405115123e-7, 3.976655915567888e-7, -5.9824
38349619261e-8, 4.138327763195176e-8, -1.9829837565086886e-7, 3.80472978078
2774e-7, -0.004646497835074785, -0.01067347052840945, 0.0003639091799442014
], [-1.5291357114160092e-16, 1.0866610338818826e-12, 1.1227141780075931e-12
, -1.5939267055144768e-13, 1.1518270702604412e-13, -5.639209163299109e-13, 
1.0774641427973126e-12, 1.6942701488476263e-15, -4.6464991146418856e-8, -4.
165134819154622e-8, 8.938471369573154e-9, -4.7778019588662996e-9, 1.8469605
322926612e-8, -3.8971737162252045e-8, 0.005520378461434084, 0.0127411807215
40438, -0.00044455408370921306]], [[4.6751623163117124e-20, -1.656902592803
4065e-8, -5.534268979084768e-9, -8.671322446868321e-11, -4.4786514336349467
e-13, 3.0234416209660143e-12, -2.1606353935251195e-12, -1.2896004522703535e
-17, 4.206402257175551e-6, 6.988795541925621e-7, -1.3589333725031318e-8, 3.
5503788427078575e-8, -6.088656212434049e-8, 2.3815855696073602e-7, 0.001245
600411400305, 0.002860729452572667, -0.00010214607553929092], [5.0025991471
43378e-17, 3.1678938517517795e-12, 5.261060135265377e-13, -1.02052385606181
53e-14, 2.671462735059237e-14, -4.572196890673573e-14, 1.7911629534855511e-
13, -2.4468027375869937e-16, 1.3539540795104723e-9, 1.4564298109168564e-9, 
-1.7460275803579459e-10, 1.4510710091318965e-10, -7.649608970196612e-10, 1.
4036832618291312e-9, -0.004393447156512099, -0.010122779614178738, 0.000345
3504578626401], [-1.6904841995388052e-17, 7.35667460560498e-16, 8.034598998
601259e-16, -9.315746836072746e-17, 7.900959842793896e-17, -4.2017206409782
88e-16, 7.767523367864484e-16, 6.9528422721247485e-16, -6.152610686959683e-
11, -4.505640828103627e-11, 1.180325761893809e-11, -6.23891389178676e-12, 1
.9563965510033533e-11, -4.05336201606857e-11, 0.003780497556492514, 0.00870
9473893476354, -0.000297237704424878]]], nothing, true, OrdinaryDiffEqRosen
brock.RosenbrockCache{Vector{Float64}, Vector{Float64}, Float64, Vector{Flo
at64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEqRosenbrock.RodasTabl
eau{Float64, Float64}, SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFun
ction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".s
lider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(
SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Fl
oat64}, SciMLBase.NullParameters}, SciMLBase.UJacobianWrapper{true, SciMLBa
se.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandB
ox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Noth
ing, Nothing, 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.D
efaultLinearSolver, LinearSolve.DefaultLinearSolverInit{LinearAlgebra.LU{Fl
oat64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCompactWY{Float64, 
Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64
}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector
{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, LinearAlgebra.SVD{Floa
t64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlgebra.Cholesky{Flo
at64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, T
uple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int32}}, Base.RefVal
ue{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, Nothin
g, Matrix{Float64}, Vector{Float64}}, LinearSolve.InvPreconditioner{LinearA
lgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64,
 Vector{Float64}}, Float64, LinearSolve.LinearVerbosity{SciMLLogging.Silent
, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLoggi
ng.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, S
ciMLLogging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLo
gging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent
, SciMLLogging.Silent}, Bool, LinearSolve.LinearSolveAdjoint{Missing}}, Tup
le{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep{Not
hing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqT
ag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{Dif
fEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}}, Tup
le{}}, DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobianPrep
{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardDiff.D
ual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}}},
 Tuple{}}}, Tuple{DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgD
erivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFuncti
on{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slid
er_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sci
MLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}, Vector{Float
64}, SciMLBase.NullParameters}, Vector{Float64}, ADTypes.AutoForwardDiff{no
thing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tu
ple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.Or
dinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}, DifferentiationInt
erfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGr
adientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, t
ypeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Noth
ing, Nothing, Nothing, 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{}}}, Float64, OrdinaryDiffEqRosenbrock.Rodas5P{0, ADTypes.
AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{:forward}(), 
true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(Ordinary
DiffEqCore.trivial_limiter!)}, typeof(OrdinaryDiffEqCore.trivial_limiter!),
 typeof(OrdinaryDiffEqCore.trivial_limiter!)}([14.999999999998904, -0.33117
35023248599, 0.1697373296153814, 0.00018924268895326456, 2.3758915247975978
e-5, -5.327102156215073e-6, -8.366365693649003e-6, 150.0, 60.25348325756636
6, -8.753102401475758, -0.030039200507881367, -0.00549931871516871, 0.00049
60535857023572, 0.001118665317438119, -62.339113356546875, -163.76819159511
533, -18.21047117266844], [14.999661075300406, -0.3313096283833128, 0.16975
711276640582, 0.00018931064918995558, 2.3771341368630795e-5, -5.32822596559
4457e-6, -8.368891334942048e-6, 150.0, 60.23881854735783, -8.75800083957870
6, -0.03011595948178246, -0.005499703285846862, 0.0004987093705251409, 0.00
1116832441838903, -62.38770921173346, -163.8151483533587, -18.2155853377259
2], [[4.6751623163117124e-20, -1.6569025928034065e-8, -5.534268979084768e-9
, -8.671322446868321e-11, -4.4786514336349467e-13, 3.0234416209660143e-12, 
-2.1606353935251195e-12, -1.2896004522703535e-17, 4.206402257175551e-6, 6.9
88795541925621e-7, -1.3589333725031318e-8, 3.5503788427078575e-8, -6.088656
212434049e-8, 2.3815855696073602e-7, 0.001245600411400305, 0.00286072945257
2667, -0.00010214607553929092], [5.002599147143378e-17, 3.1678938517517795e
-12, 5.261060135265377e-13, -1.0205238560618153e-14, 2.671462735059237e-14,
 -4.572196890673573e-14, 1.7911629534855511e-13, -2.4468027375869937e-16, 1
.3539540795104723e-9, 1.4564298109168564e-9, -1.7460275803579459e-10, 1.451
0710091318965e-10, -7.649608970196612e-10, 1.4036832618291312e-9, -0.004393
447156512099, -0.010122779614178738, 0.0003453504578626401], [-1.6904841995
388052e-17, 7.35667460560498e-16, 8.034598998601259e-16, -9.315746836072746
e-17, 7.900959842793896e-17, -4.201720640978288e-16, 7.767523367864484e-16,
 6.9528422721247485e-16, -6.152610686959683e-11, -4.505640828103627e-11, 1.
180325761893809e-11, -6.23891389178676e-12, 1.9563965510033533e-11, -4.0533
6201606857e-11, 0.003780497556492514, 0.008709473893476354, -0.000297237704
424878]], [1.361037499351051e-19, -3.525159676465468e-18, -3.65499171531746
45e-18, 7.53073315670488e-19, -3.752541369597298e-19, 3.250552440641999e-19
, -3.403527541006535e-18, -2.417956728236717e-26, 4.958648322857677e-14, 5.
2025170907097794e-14, -9.432934623001271e-15, 4.4447795447243536e-15, -9.53
8343829656414e-15, 4.742588629403167e-14, -5.824028563054707e-6, -1.3453107
52224769e-5, 4.4775909088702425e-7], [-149.99999999999972, -60.253483257573
73, 8.753102401468125, 0.030039200509453964, 0.00549931871438509, -0.000496
0535850235643, -0.0011186653245454964, -22.55119158171042, -29.910760842950
662, -163.76819158690728, -96.1966807928996, 46.80265605933187, 1.281316841
0154026, -0.039621061963177856, 0.0, 0.0, 0.0], [-149.99999999999972, -60.2
5348325757373, 8.753102401468125, 0.030039200509453964, 0.00549931871438509
, -0.0004960535850235643, -0.0011186653245454964, -22.55119158171042, -29.9
10760842950662, -163.76819158690728, -96.1966807928996, 46.80265605933187, 
1.2813168410154026, -0.039621061963177856, 0.0, 0.0, 0.0], [0.0 0.0 … 0.0 0
.0; -6.264715581448679e6 0.0 … 0.0 0.0; … ; 1.3681239052778866e7 -1.3812025
276515973e6 … -1.2431054724254841e7 0.0; 1.67306062680421e7 -1.441557778471
8082e6 … -2.4194667519528683e7 -4.199435699940902e6], [4.78872498040249e-7,
 -9.57744996080498e-7, -7.647558188585668e-7, 4.077592399267431e-6, 5.25519
8358109485e-6, 0.0, 0.0, 0.0], [[7.183087470603735e-5, 2.884820225230685e-5
, -4.193468547502374e-6, -1.4413944307954413e-8, -2.6336009856120605e-9, 2.
385453082683162e-10, 5.350185739271113e-10, 0.0, 0.0031088349120501364, 0.0
010382562943460323, 1.620564972395239e-5, 1.1624255270302732e-7, -5.6986732
84758135e-7, 4.139569763107239e-7, 0.007374347888760084, 0.0088327444001177
18, 0.00043248349403184977], [-0.00014366174941207467, -5.769640519056922e-
5, 8.38693707801769e-6, 2.8828019629412053e-8, 5.267136464133269e-9, -4.770
91592158638e-10, -1.0700293351458424e-9, 0.0, -0.006219102262881899, -0.002
0765480617190375, -3.2137712002872263e-5, -3.6927953632055284e-7, 1.1376973
25492986e-6, -8.115991539841316e-7, -0.0013404431728162242, -0.012068888149
986428, 0.00204450532640788], [-0.00011471337282878496, -4.607135353473424e
-5, 6.696607755811907e-6, 2.3013799434296052e-8, 4.205808069670968e-9, -3.8
07754647110326e-10, -8.545459228886832e-10, 0.0, -0.0049646843759368845, -0
.0016580495247374867, -2.5852612229006697e-5, -1.977689245647666e-7, 9.0621
59289206165e-7, -6.451538753794531e-7, -0.010332971302265213, -0.0134149960
2001751, -0.0003913196933599126], [0.0006116388598901151, 0.000245645046725
8743, -3.570631513487678e-5, -1.2271885678427044e-7, -2.242492159503127e-8,
 2.0306534997680723e-9, 4.556085361861462e-9, 3.773164260794045e-18, 0.0264
72393500484345, 0.008840646851674898, 0.00013771146418821388, 1.12428312920
90775e-6, -4.839304156128549e-6, 3.4647299476336513e-6, 0.04857465487029709
, 0.06851975472652355, 0.0007197102405282748], [0.0007882797537164225, 0.00
0316588326440537, -4.601788937083647e-5, -1.5815387439473784e-7, -2.8901224
189112315e-8, 2.6168940019450198e-9, 5.872033072669506e-9, -7.5463285215880
9e-18, 0.03411662629503912, 0.011393753901708248, 0.00017761394981620577, 1
.3812204527612728e-6, -6.233631871903383e-6, 4.4566193282203536e-6, 0.06860
381907345679, 0.09005810243092262, 0.0023449819486382707], [4.0831124980535
004e-19, -1.5540711744888946e-9, -5.192066114571554e-10, -8.197185612249342
e-12, -1.0120173702586172e-14, 2.8158850572231593e-13, -1.9667186378978253e
-13, 0.0, 1.0600816719537916e-6, 8.235938160352043e-8, -1.283624524437307e-
7, 6.687814992028861e-8, -4.790291378046679e-9, 1.4733888059248845e-8, -0.0
05976046863892966, -0.002014207791533627, -0.001368723173532952], [6.124668
74708015e-19, -2.0129222572637078e-16, -1.0895456837003922e-16, 3.855558084
9103284e-17, -1.9256042450673074e-17, -7.550571839282398e-18, 5.42292046934
3025e-17, -2.1084198322858913e-26, -3.956632888365561e-11, -1.8584483215330
47e-11, 7.555411677823566e-12, -3.7749928350557595e-12, -2.3571486877192985
e-12, 1.88734346448179e-11, -4.417914980935184e-6, -1.1495247173775045e-5, 
1.7237998601389906e-7], [1.361037499351051e-19, -3.525159676465468e-18, -3.
6549917153174645e-18, 7.53073315670488e-19, -3.752541369597298e-19, 3.25055
2440641999e-19, -3.403527541006535e-18, -2.417956728236717e-26, 4.958648322
857677e-14, 5.2025170907097794e-14, -9.432934623001271e-15, 4.4447795447243
536e-15, -9.538343829656414e-15, 4.742588629403167e-14, -5.824028563054707e
-6, -1.345310752224769e-5, 4.4775909088702425e-7]], [150.0, 60.238818547357
83, -8.758000839578706, -0.03011595948178246, -0.005499703285846862, 0.0004
987093705251409, 0.001116832441838903, 22.563680794381472, 29.9272493400647
23, 163.8151483533587, 96.2495033600122, -46.82714522677127, -1.31491941245
30368, 0.09513052663032795, 5.766166624038283e-14, -2.155827599770177e-15, 
0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0
.0, 0.0, 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
7.088018088938952 17.08801808893901 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-2.0882
3852714956e6 0.0 … 0.0 0.0; 0.0 -2.08823852714956e6 … 0.0 0.0; … ; -17.0880
18088938952 17.08801808893901 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-1.3610374993
51051e-19, 3.525159676465468e-18, 3.6549917153174645e-18, -7.53073315670488
e-19, 3.752541369597298e-19, -3.250552440641999e-19, 3.403527541006535e-18,
 2.417956728236717e-26, -4.958648322857677e-14, -5.2025170907097794e-14, 9.
432934623001271e-15, -4.4447795447243536e-15, 9.538343829656414e-15, -4.742
588629403167e-14, 5.824028563054707e-6, 1.345310752224769e-5, -4.4775909088
702425e-7], [8.506484370944652e-15, -2.647888666400074e-12, -3.124573191671
9247e-12, 7.52930777856137e-13, -3.752452168775825e-13, 3.250535121056365e-
13, -3.4034990574927644e-12, -1.6012958465143824e-22, 8.09529198855015e-10,
 5.331539908879936e-9, -9.157158023011964e-9, 4.420468280795481e-9, -9.5335
89339318159e-9, 4.7372891882895527e-8, -0.09187946110500304, -0.08162543101
56287, 0.023301871008214344], [62501.32395265281, 751140.0643998636, 854878
.3239582614, 999810.7251825486, 999976.2292236947, 999994.6718024244, 99999
1.6311787028, 6622.516556291392, 16329.511635281955, 102480.00757941873, 97
0764.4957787734, 994530.3780121721, 999501.5392165384, 998884.413481377, 15
775.929000048069, 6067.4034516295205, 52041.089689664674], OrdinaryDiffEqRo
senbrock.RodasTableau{Float64, Float64}([0.0 0.0 … 0.0 0.0; 3.0 0.0 … 0.0 0
.0; … ; -7.502846399306121 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.91273214028599 -3.1208243349937974 … -28.087943162872662 0
.0; 37.80277123390563 -3.2571969029072276 … -54.66780262877968 -9.488616523
09627], 0.21193756319429014, [0.0, 0.6358126895828704, 0.4095798393397535, 
0.9769306725060716, 0.4288403609558664, 1.0, 1.0, 1.0], [0.2119375631942901
4, -0.42387512638858027, -0.3384627126235924, 1.8046452872882734, 2.3258256
39765069, 0.0, 0.0, 0.0], [25.948786856663858 -2.5579724845846235 … 0.42728
76194431874 -0.17202221070155493; -9.91568850695171 -0.9689944594115154 … -
6.789040303419874 -6.710236069923372; 11.419903575922262 2.8879645146136994
 … -0.15582684282751913 4.883087185713722]), SciMLBase.TimeGradientWrapper{
true, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var
"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Not
hing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothin
g, Nothing}, Vector{Float64}, SciMLBase.NullParameters}(SciMLBase.ODEFuncti
on{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slid
er_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(Sci
MLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}(Main.var"##We
aveSandBox#225".slider_crank_mm!, [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, S
ciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothing), [14.9996610
75300406, -0.3313096283833128, 0.16975711276640582, 0.00018931064918995558,
 2.3771341368630795e-5, -5.328225965594457e-6, -8.368891334942048e-6, 150.0
, 60.23881854735783, -8.758000839578706, -0.03011595948178246, -0.005499703
285846862, 0.0004987093705251409, 0.001116832441838903, -62.38770921173346,
 -163.8151483533587, -18.21558533772592], SciMLBase.NullParameters()), SciM
LBase.UJacobianWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.FullSpec
ialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{Float
64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), N
othing, Nothing, Nothing, Nothing}, Float64, SciMLBase.NullParameters}(SciM
LBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSa
ndBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing
}(Main.var"##WeaveSandBox#225".slider_crank_mm!, [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, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing, nothing, nothing, nothin
g), 0.09999774050201002, SciMLBase.NullParameters()), [2.8421709430404007e-
13, -7.410960733977845e-12, -7.684519687245484e-12, 1.5820296461743766e-12,
 -7.880649258162897e-13, 6.883312279534759e-13, -7.154803225578599e-12, -2.
014773770042666e-7, -3.3924762377068873e-7, -1.3444899479964079e-5, 6.05382
41086760536e-12, -4.673239573094179e-11, -8.651888983024492e-9, 1.464248333
2688583e-5, 1.5768094295542934e-15, -2.3438282564791635e-15, 0.0], LinearSo
lve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBas
e.NullParameters, LinearSolve.DefaultLinearSolver, LinearSolve.DefaultLinea
rSolverInit{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Line
arAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64
, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{F
loat64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, 
Nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float6
4}}, LinearAlgebra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Choles
ky{Float64, Matrix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int32}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, 
Matrix{Float64}, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPiv
oted{Float64, Matrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, No
thing, Nothing, Nothing, Nothing, Matrix{Float64}, Vector{Float64}}, Linear
Solve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, 
LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, LinearSolve.Line
arVerbosity{SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, 
SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging
.Silent, SciMLLogging.Silent, SciMLLogging.WarnLevel, SciMLLogging.WarnLeve
l, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogg
ing.Silent, SciMLLogging.Silent, SciMLLogging.Silent}, Bool, LinearSolve.Li
nearSolveAdjoint{Missing}}([-2.08823852714956e6 0.0 … 0.0 0.0; 0.0 -2.08823
852714956e6 … 0.0 0.0; … ; -17.088018088938952 17.08801808893901 … 0.0 0.0;
 0.0 0.0 … 0.0 0.0], [2.8421709430404007e-13, -7.410960733977845e-12, -7.68
4519687245484e-12, 1.5820296461743766e-12, -7.880649258162897e-13, 6.883312
279534759e-13, -7.154803225578599e-12, -2.014773770042666e-7, -3.3924762377
068873e-7, -1.3444899479964079e-5, 6.0538241086760536e-12, -4.6732395730941
79e-11, -8.651888983024492e-9, 1.4642483332688583e-5, 1.5768094295542934e-1
5, -2.3438282564791635e-15, 0.0], [-1.361037499351051e-19, 3.52515967646546
8e-18, 3.6549917153174645e-18, -7.53073315670488e-19, 3.752541369597298e-19
, -3.250552440641999e-19, 3.403527541006535e-18, 2.417956728236717e-26, -4.
958648322857677e-14, -5.2025170907097794e-14, 9.432934623001271e-15, -4.444
7795447243536e-15, 9.538343829656414e-15, -4.742588629403167e-14, 5.8240285
63054707e-6, 1.345310752224769e-5, -4.4775909088702425e-7], SciMLBase.NullP
arameters(), LinearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmCh
oice.LUFactorization, true, false), LinearSolve.DefaultLinearSolverInit{Lin
earAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, LinearAlgebra.QRCom
pactWY{Float64, Matrix{Float64}, Matrix{Float64}}, Nothing, Nothing, Nothin
g, Nothing, Nothing, Nothing, Tuple{LinearAlgebra.LU{Float64, Matrix{Float6
4}, Vector{Int64}}, Vector{Int64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{
Float64}, Vector{Int64}}, Vector{Int64}}, Nothing, Nothing, Nothing, Linear
Algebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}}, LinearAlge
bra.Cholesky{Float64, Matrix{Float64}}, LinearAlgebra.Cholesky{Float64, Mat
rix{Float64}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int3
2}}, Base.RefValue{Int32}}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}
, Vector{Int64}}, Base.RefValue{Int64}}, LinearAlgebra.QRPivoted{Float64, M
atrix{Float64}, Vector{Float64}, Vector{Int64}}, Nothing, Nothing, Nothing,
 Nothing, Nothing, Matrix{Float64}, Vector{Float64}}(LinearAlgebra.LU{Float
64, Matrix{Float64}, Vector{Int64}}([-2.08823852714956e6 0.0 … 0.0 0.0; -0.
0 -2.08823852714956e6 … 0.0 0.0; … ; 8.182981908807157e-6 -8.18298190880718
5e-6 … -8.687043442092143e-6 -7.432358522798109e-6; -0.0 -0.0 … 0.855649486
2305134 -0.00011162710083651176], [1, 2, 3, 4, 5, 13, 14, 11, 12, 10, 11, 1
2, 14, 14, 15, 16, 17], 0), LinearAlgebra.QRCompactWY{Float64, Matrix{Float
64}, Matrix{Float64}}(Matrix{Float64}(undef, 0, 0), Matrix{Float64}(undef, 
0, 0)), nothing, nothing, nothing, nothing, nothing, nothing, (LinearAlgebr
a.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0),
 Int64[], 0), Int64[]), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{
Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), Int64[]), nothing, nothi
ng, nothing, LinearAlgebra.SVD{Float64, Float64, Matrix{Float64}, Vector{Fl
oat64}}(Matrix{Float64}(undef, 0, 0), Float64[], Matrix{Float64}(undef, 0, 
0)), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}(Matrix{Float64}(undef
, 0, 0), 'U', 0), LinearAlgebra.Cholesky{Float64, Matrix{Float64}}([0.71551
06697363188;;], 'U', 0), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector
{Int32}}(Matrix{Float64}(undef, 0, 0), Int32[], 0), Base.RefValue{Int32}(38
7486256)), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matri
x{Float64}(undef, 0, 0), Int64[], 0), Base.RefValue{Int64}(140261301038640)
), LinearAlgebra.QRPivoted{Float64, Matrix{Float64}, Vector{Float64}, Vecto
r{Int64}}(Matrix{Float64}(undef, 0, 0), Float64[], Int64[]), nothing, nothi
ng, nothing, nothing, nothing, [-2.08823852714956e6 0.0 … 0.0 0.0; 0.0 -2.0
8823852714956e6 … 0.0 0.0; … ; -17.088018088938952 17.08801808893901 … 0.0 
0.0; 0.0 0.0 … 0.0 0.0], [4.083548764187966e233, 4.083548764187966e233, 1.6
525714041314448e40, 4.08354876418433e233, 4.083548764187966e233, 4.08354876
4187966e233, 3.526621543047489e156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
 0.0, 6.92364793340186e-310], true, true, false), false, true, LinearSolve.
InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([62501.
32395265281 0.0 … 0.0 0.0; 0.0 751140.0643998636 … 0.0 0.0; … ; 0.0 0.0 … 6
067.4034516295205 0.0; 0.0 0.0 … 0.0 52041.089689664674]), [62501.323952652
81 0.0 … 0.0 0.0; 0.0 751140.0643998636 … 0.0 0.0; … ; 0.0 0.0 … 6067.40345
16295205 0.0; 0.0 0.0 … 0.0 52041.089689664674], 1.4901161193847656e-8, 1.4
901161193847656e-8, 17, LinearSolve.LinearVerbosity{SciMLLogging.Silent, Sc
iMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.S
ilent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciML
Logging.WarnLevel, SciMLLogging.WarnLevel, SciMLLogging.Silent, SciMLLoggin
g.Silent, SciMLLogging.Silent, SciMLLogging.Silent, SciMLLogging.Silent, Sc
iMLLogging.Silent}(SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLoggi
ng.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Sil
ent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.WarnLevel
(), SciMLLogging.WarnLevel(), SciMLLogging.Silent(), SciMLLogging.Silent(),
 SciMLLogging.Silent(), SciMLLogging.Silent(), SciMLLogging.Silent(), SciML
Logging.Silent()), LinearSolve.OperatorAssumptions{Bool}(true, LinearSolve.
OperatorCondition.IllConditioned), LinearSolve.LinearSolveAdjoint{Missing}(
missing)), (DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoArgJacobia
nPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector{ForwardD
iff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9
}}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff
.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}},
 Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}, Float64, 9}}}}((Partials(1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
, Partials(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0,
 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 1.0, 0.0, 0.0,
 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0), Par
tials(0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0,
 0.0, 0.0, 0.0, 1.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
 1.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0)), (Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(150.0,0.0,
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(60.23881854735783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.7580008395
78706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0,1.0,0.0,0.0,0.0,0.0,
0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(
-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0004987093705251409,0.0,0.0
,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiff
EqTag, Float64}}(0.001116832441838903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.5636807943
81472,0.0,-0.6399560486458884,0.0,1.6926248488060909,0.4231562122015227,0.1
1392012059292635,-0.09758179197008587,-1.0,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0,-0.00172316732707
50195,-0.00021637450900118045,-1.819536946761116,-0.9098309397504377,-0.283
6772331561528,0.09758179197015751,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase
.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0,0.0,0.0,0.0,0.0,0.0,-1.
0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(96
.2495033600122,0.0,0.0,0.0,-9.394047408639098,-1.0976971949109318,0.0,0.0,0
.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-46.8
2714522677127,0.0,0.0,0.0,0.0,2.8973604496152405,0.0,0.0,0.0,0.0), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124530368,0.
0,9.394047408639098,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0,1.0976971949109
318,-2.8973604496152405,0.0,0.0,0.32528171405825235,0.9456171564112642,0.0,
0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.766166
624038283e-14,0.0,0.0,0.0,0.0,-0.32528171405825235,0.0,0.0,0.0,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-2.155827599770177e-
15,1.0,0.0,0.0,0.0,-0.9456171564112642,0.0,0.0,0.0,0.0), Dual{ForwardDiff.T
ag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
0.0,0.0)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}, Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(14.999661075300406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.3313096283833128,0.0,0
.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}}(0.16975711276640582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0001893106
4918995558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(2.3771341368630795e-5,0.0,0.0,0.0,0.0,0.
0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Floa
t64}}(-5.328225965594457e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.368891334942048e-6,0
.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordina
ryDiffEqTag, Float64}}(150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{For
wardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.23881854735783,0.0,
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(-8.758000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.030115959
48178246,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqB
ase.OrdinaryDiffEqTag, Float64}}(-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,
0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(0.0004987093705251409,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.001116832441838903,0.0,
0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(-62.38770921173346,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-163.8151483
533587,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBas
e.OrdinaryDiffEqTag, Float64}}(-18.21558533772592,0.0,0.0,0.0,0.0,0.0,0.0,0
.0,1.0,0.0)])), ()), DifferentiationInterfaceForwardDiffExt.ForwardDiffTwoA
rgJacobianPrep{Nothing, ForwardDiff.JacobianConfig{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9}}, Vector
{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, F
loat64, 9}}}}, Tuple{}}(Val{Nothing}(), ForwardDiff.JacobianConfig{ForwardD
iff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 9, Tuple{Vector{Fo
rwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Floa
t64, 9}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}, Float64, 9}}}}((Partials(1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0), Partials(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(
0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 1.0, 
0.0, 0.0, 0.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 
0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0), Partials(0.0, 
0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 
0.0, 0.0, 1.0, 0.0), Partials(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0))
, (ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64},
 Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(1
50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(60.23881854735783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.7
58000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0,1.0,0.0,0.0
,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}}(-0.005499703285846862,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.000498709370525140
9,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(0.001116832441838903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,
0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.5
63680794381472,0.0,-0.6399560486458884,0.0,1.6926248488060909,0.42315621220
15227,0.11392012059292635,-0.09758179197008587,-1.0,0.0), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0,-0.00172
31673270750195,-0.00021637450900118045,-1.819536946761116,-0.90983093975043
77,-0.2836772331561528,0.09758179197015751,0.0,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0,0.0,0.0,0.0,0.
0,0.0,-1.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Flo
at64}}(96.2495033600122,0.0,0.0,0.0,-9.394047408639098,-1.0976971949109318,
0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float6
4}}(-46.82714522677127,0.0,0.0,0.0,0.0,2.8973604496152405,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124
530368,0.0,9.394047408639098,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0,1.0976
971949109318,-2.8973604496152405,0.0,0.0,0.32528171405825235,0.945617156411
2642,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(5.766166624038283e-14,0.0,0.0,0.0,0.0,-0.32528171405825235,0.0,0.0,0.0,0.0
), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-2.15582759
9770177e-15,1.0,0.0,0.0,0.0,-0.9456171564112642,0.0,0.0,0.0,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0,0.0,0.0)], ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}, Float64, 9}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}}(14.999661075300406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.3313096283833
128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}}(0.16975711276640582,0.0,0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
0018931064918995558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.
Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2.3771341368630795e-5,0.0,0.0,0
.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEq
Tag, Float64}}(-5.328225965594457e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), 
Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8.36889133494
2048e-6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBa
se.OrdinaryDiffEqTag, Float64}}(150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0),
 Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.2388185473
5783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-8.758000839578706,1.0,0.0,0.0,0.0,0.0,0.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.
03011595948178246,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Ta
g{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.005499703285846862,0.0,0.0,1.0
,0.0,0.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(0.0004987093705251409,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0), Du
al{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.00111683244183
8903,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-62.38770921173346,0.0,0.0,0.0,0.0,0.0,1.0,0.0
,0.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-16
3.8151483533587,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(-18.21558533772592,0.0,0.0,0.0,0.0,
0.0,0.0,0.0,1.0,0.0)])), ())), (DifferentiationInterfaceForwardDiffExt.Forw
ardDiffTwoArgDerivativePrep{Tuple{SciMLBase.TimeGradientWrapper{true, SciML
Base.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"##WeaveSan
dBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothi
ng, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing, Nothing}
, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, ADTypes.Auto
ForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}
}, Float64, Tuple{}}, Float64, ForwardDiff.DerivativeConfig{ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, Tuple{}}(Val{T
uple{SciMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLB
ase.FullSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), 
Matrix{Float64}, Nothing, Nothing, Nothing, 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{}}}(), 0.0,
 ForwardDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffE
qTag, Float64}, Float64, 1}}}(ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.O
rdinaryDiffEqTag, Float64}, Float64, 1}[Dual{ForwardDiff.Tag{DiffEqBase.Ord
inaryDiffEqTag, Float64}}(150.0,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(60.23881854735783,0.0), Dual{ForwardDiff.Tag{DiffEq
Base.OrdinaryDiffEqTag, Float64}}(-8.758000839578706,0.0), Dual{ForwardDiff
.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.03011595948178246,0.0), Dua
l{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-0.00549970328584
6862,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0
004987093705251409,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag,
 Float64}}(0.001116832441838903,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordin
aryDiffEqTag, Float64}}(22.563680794381472,0.0), Dual{ForwardDiff.Tag{DiffE
qBase.OrdinaryDiffEqTag, Float64}}(29.927249340064723,0.0), Dual{ForwardDif
f.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(163.8151483533587,0.0), Dual{
ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(96.2495033600122,0.
0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-46.827145
22677127,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}
(-1.3149194124530368,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTa
g, Float64}}(0.09513052663032795,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordi
naryDiffEqTag, Float64}}(5.766166624038283e-14,0.0), Dual{ForwardDiff.Tag{D
iffEqBase.OrdinaryDiffEqTag, Float64}}(-2.155827599770177e-15,0.0), Dual{Fo
rwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.0,0.0)]), ()), Diff
erentiationInterfaceForwardDiffExt.ForwardDiffTwoArgDerivativePrep{Tuple{Sc
iMLBase.TimeGradientWrapper{true, SciMLBase.ODEFunction{true, SciMLBase.Ful
lSpecialize, typeof(Main.var"##WeaveSandBox#225".slider_crank_mm!), Matrix{
Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, No
thing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVE
D), Nothing, Nothing, Nothing, Nothing}, Vector{Float64}, SciMLBase.NullPar
ameters}, Vector{Float64}, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag
{DiffEqBase.OrdinaryDiffEqTag, Float64}}, Float64, Tuple{}}, Float64, Forwa
rdDiff.DerivativeConfig{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float
64}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}, Float64, 1}}}, Tuple{}}(Val{Tuple{SciMLBase.TimeGradientWrapper{t
rue, SciMLBase.ODEFunction{true, SciMLBase.FullSpecialize, typeof(Main.var"
##WeaveSandBox#225".slider_crank_mm!), Matrix{Float64}, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Noth
ing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing, Nothing, Nothing
, Nothing}, Vector{Float64}, SciMLBase.NullParameters}, Vector{Float64}, AD
Types.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag
, Float64}}, Float64, Tuple{}}}(), 0.0, ForwardDiff.DerivativeConfig{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Vector{ForwardDiff.Dual{F
orwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Forwar
dDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64,
 1}[Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(150.0,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(60.238818547
35783,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(-8
.758000839578706,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, F
loat64}}(-0.03011595948178246,0.0), Dual{ForwardDiff.Tag{DiffEqBase.Ordinar
yDiffEqTag, Float64}}(-0.005499703285846862,0.0), Dual{ForwardDiff.Tag{Diff
EqBase.OrdinaryDiffEqTag, Float64}}(0.0004987093705251409,0.0), Dual{Forwar
dDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.001116832441838903,0.0)
, Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(22.563680794
381472,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(2
9.927249340064723,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, 
Float64}}(163.8151483533587,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryD
iffEqTag, Float64}}(96.2495033600122,0.0), Dual{ForwardDiff.Tag{DiffEqBase.
OrdinaryDiffEqTag, Float64}}(-46.82714522677127,0.0), Dual{ForwardDiff.Tag{
DiffEqBase.OrdinaryDiffEqTag, Float64}}(-1.3149194124530368,0.0), Dual{Forw
ardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(0.09513052663032795,0.0
), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}}(5.766166624
038283e-14,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64
}}(-2.155827599770177e-15,0.0), Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDif
fEqTag, Float64}}(0.0,0.0)]), ())), 1.0e-6, OrdinaryDiffEqRosenbrock.Rodas5
P{0, ADTypes.AutoForwardDiff{nothing, ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}}, Nothing, typeof(OrdinaryDiffEqCore.DEFAULT_PRECS), Val{
:forward}(), true, nothing, typeof(OrdinaryDiffEqCore.trivial_limiter!), ty
peof(OrdinaryDiffEqCore.trivial_limiter!)}(nothing, OrdinaryDiffEqCore.DEFA
ULT_PRECS, OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqCore.trivial_
limiter!, ADTypes.AutoForwardDiff(tag=ForwardDiff.Tag{DiffEqBase.OrdinaryDi
ffEqTag, Float64}())), OrdinaryDiffEqCore.trivial_limiter!, OrdinaryDiffEqC
ore.trivial_limiter!, 3), OrdinaryDiffEqCore.DifferentialVarsUndefined(), f
alse), true, 0, SciMLBase.DEStats(124293, 0, 11345, 90760, 11177, 0, 0, 0, 
0, 0, 11177, 168, 0.0), nothing, SciMLBase.ReturnCode.Success, nothing, not
hing, nothing)

High Tolerances

abstols = 1.0 ./ 10.0 .^ (4:7)
reltols = 1.0 ./ 10.0 .^ (1:4)
setups = [
    Dict(:prob_choice => 1, :alg => IDA()),
    Dict(:prob_choice => 2, :alg => Rodas5P()),
    Dict(:prob_choice => 2, :alg => Rodas4P()),
    Dict(:prob_choice => 3, :alg => Rodas5P()),
    Dict(:prob_choice => 3, :alg => Rodas4P()),
    Dict(:prob_choice => 3, :alg => FBDF()),
]
labels = ["IDA (DAE)" "Rodas5P (MTK)" "Rodas4P (MTK)" "Rodas5P (MM)" "Rodas4P (MM)" "FBDF (MM)"]

wp = WorkPrecisionSet(probs, abstols, reltols, setups;
    names = labels, appxsol = refs, save_everystep = false,
    maxiters = Int(1e6), numruns = 5)
plot(wp, title = "Slider-Crank: All Formulations (High Tol)")

Medium Tolerances

abstols = 1.0 ./ 10.0 .^ (5:7)
reltols = 1.0 ./ 10.0 .^ (2:4)
setups = [
    Dict(:prob_choice => 1, :alg => IDA()),
    Dict(:prob_choice => 2, :alg => Rodas5P()),
    Dict(:prob_choice => 2, :alg => Rodas4P()),
    Dict(:prob_choice => 3, :alg => Rodas5P()),
    Dict(:prob_choice => 3, :alg => Rodas4P()),
]
labels = ["IDA (DAE)" "Rodas5P (MTK)" "Rodas4P (MTK)" "Rodas5P (MM)" "Rodas4P (MM)"]

wp = WorkPrecisionSet(probs, abstols, reltols, setups;
    names = labels, appxsol = refs, save_everystep = false,
    maxiters = Int(1e6), numruns = 5)
plot(wp, title = "Slider-Crank: All Formulations (Medium Tol)")

Timeseries Errors (L2)

abstols = 1.0 ./ 10.0 .^ (4:7)
reltols = 1.0 ./ 10.0 .^ (1:4)
setups = [
    Dict(:prob_choice => 2, :alg => Rodas5P()),
    Dict(:prob_choice => 2, :alg => Rodas4P()),
    Dict(:prob_choice => 3, :alg => Rodas5P()),
    Dict(:prob_choice => 3, :alg => Rodas4P()),
]
labels = ["Rodas5P (MTK)" "Rodas4P (MTK)" "Rodas5P (MM)" "Rodas4P (MM)"]

wp = WorkPrecisionSet(probs, abstols, reltols, setups;
    names = labels, appxsol = refs, save_everystep = false,
    maxiters = Int(1e6), numruns = 5, error_estimate = :l2)
plot(wp, title = "Slider-Crank: Timeseries Error (L2)")

Verification against ARCHIMEDE Reference

The IVP Test Set (crank.f, solut subroutine) provides reference values at t = 0.1. We verify our solution reproduces these values.

archimede_refs = Dict(
    "φ₂"  => -0.331173498825626,
    "x₃"  =>  0.169737332842786,
    "q₁"  =>  0.1893192899613509e-3,
    "q₂"  =>  0.2375751249879174e-4,
    "q₃"  => -0.5323896770569702e-5,
    "q₄"  => -0.8363313279112129e-5,
    "λ₁"  => -62.32935833287916,
    "λ₂"  => -163.7920993367306,
    "λ₃"  =>  25.29857947066878,
)

# Mass-matrix form indices: [p(1:7), v(8:14), λ(15:17)]
idxmap = [("φ₂", 2), ("x₃", 3), ("q₁", 4), ("q₂", 5), ("q₃", 6), ("q₄", 7),
          ("λ₁", 15), ("λ₂", 16), ("λ₃", 17)]

sol_final = ref_sol.u[end]
println("=== Verification at t = 0.1 ===")
println("Variable    | ARCHIMEDE Reference  | Our Solution         | Rel Error")
println("-"^75)
for (name, idx) in idxmap
    ref_val = archimede_refs[name]
    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("$(rpad(name, 12))| $(lpad(string(ref_val), 21)) | $(lpad(string(round(our_val, sigdigits=10)), 21)) | $(relerr) $status")
end

# Overlay ARCHIMEDE reference point on q₁ timeseries
p_verify = plot(ref_sol, idxs = [4], title = "Verification: Elastic Mode q₁",
    xlabel = "Time (s)", ylabel = "Amplitude", lw = 2, label = "SciML Rodas5P")
scatter!(p_verify, [0.1], [0.1893192899613509e-3],
    label = "ARCHIMEDE Reference", color = :red, markersize = 8)
plot(p_verify)
=== Verification at t = 0.1 ===
Variable    | ARCHIMEDE Reference  | Our Solution         | Rel Error
---------------------------------------------------------------------------
φ₂          |    -0.331173498825626 |         -0.3311735023 | 1.05661652126
33346e-8 ✓
x₃          |     0.169737332842786 |          0.1697373296 | 1.90141116248
40277e-8 ✓
q₁          | 0.0001893192899613509 |        0.000189242689 | 0.00040461280
04282341 ✓
q₂          |  2.375751249879174e-5 |        2.375891525e-5 | 5.90444468590
6018e-5 ✓
q₃          | -5.323896770569702e-6 |       -5.327102156e-6 | 0.00060207509
33957827 ✓
q₄          | -8.363313279112129e-6 |       -8.366365694e-6 | 0.00036497670
660000765 ✓
λ₁          |    -62.32935833287916 |          -62.33911336 | 0.00015650768
640384412 ✓
λ₂          |    -163.7920993367306 |          -163.7681916 | 0.00014596394
888443659 ✓
λ₃          |     25.29857947066878 |          -18.21047117 | 1.71982188540
59253 ✗

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","slider_crank.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`